rails-settings-ui 0.0.2 → 0.1.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 (72) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -0
  3. data/Rakefile +11 -10
  4. data/app/assets/stylesheets/rails_settings_ui/application.css.scss +2 -2
  5. data/app/controllers/rails_settings_ui/settings_controller.rb +1 -1
  6. data/app/helpers/rails_settings_ui/settings_helper.rb +32 -63
  7. data/lib/rails-settings-ui.rb +1 -1
  8. data/lib/rails-settings-ui/engine.rb +7 -0
  9. data/lib/rails-settings-ui/type_converter.rb +58 -0
  10. data/lib/rails-settings-ui/value_types/array.rb +17 -0
  11. data/lib/rails-settings-ui/value_types/base.rb +30 -0
  12. data/lib/rails-settings-ui/value_types/boolean.rb +11 -0
  13. data/lib/rails-settings-ui/value_types/fixnum.rb +17 -0
  14. data/lib/rails-settings-ui/value_types/float.rb +17 -0
  15. data/lib/rails-settings-ui/value_types/hash.rb +19 -0
  16. data/lib/rails-settings-ui/value_types/string.rb +11 -0
  17. data/lib/rails-settings-ui/value_types/symbol.rb +11 -0
  18. data/lib/rails-settings-ui/version.rb +1 -1
  19. data/spec/dummy/README.rdoc +28 -0
  20. data/spec/dummy/Rakefile +6 -0
  21. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  22. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  23. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  24. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  25. data/spec/dummy/app/models/settings.rb +16 -0
  26. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  27. data/spec/dummy/bin/bundle +3 -0
  28. data/spec/dummy/bin/rails +4 -0
  29. data/spec/dummy/bin/rake +4 -0
  30. data/spec/dummy/config.ru +4 -0
  31. data/spec/dummy/config/application.rb +28 -0
  32. data/spec/dummy/config/boot.rb +5 -0
  33. data/spec/dummy/config/database.yml +24 -0
  34. data/spec/dummy/config/environment.rb +5 -0
  35. data/spec/dummy/config/environments/development.rb +29 -0
  36. data/spec/dummy/config/environments/production.rb +80 -0
  37. data/spec/dummy/config/environments/test.rb +36 -0
  38. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/spec/dummy/config/initializers/inflections.rb +16 -0
  41. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  42. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  43. data/spec/dummy/config/initializers/session_store.rb +3 -0
  44. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  45. data/spec/dummy/config/locales/en.yml +23 -0
  46. data/spec/dummy/config/routes.rb +3 -0
  47. data/spec/dummy/db/migrate/20140320182332_create_settings.rb +17 -0
  48. data/spec/dummy/db/schema.rb +27 -0
  49. data/spec/dummy/db/test.sqlite3 +0 -0
  50. data/spec/dummy/log/development.log +264 -0
  51. data/spec/dummy/log/test.log +3237 -0
  52. data/spec/dummy/public/404.html +58 -0
  53. data/spec/dummy/public/422.html +58 -0
  54. data/spec/dummy/public/500.html +57 -0
  55. data/spec/dummy/public/favicon.ico +0 -0
  56. data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  57. data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  58. data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/spec/dummy/tmp/capybara/capybara-201403251000145108838835.html +68 -0
  60. data/spec/dummy/tmp/capybara/capybara-201403251029034025293240.html +95 -0
  61. data/spec/features/settings_spec.rb +63 -0
  62. data/spec/lib/rails-settings-ui/type_converter_spec.rb +33 -0
  63. data/spec/lib/rails-settings-ui/value_types/array_spec.rb +15 -0
  64. data/spec/lib/rails-settings-ui/value_types/base_spec.rb +23 -0
  65. data/spec/lib/rails-settings-ui/value_types/boolean_spec.rb +10 -0
  66. data/spec/lib/rails-settings-ui/value_types/fixnum_spec.rb +17 -0
  67. data/spec/lib/rails-settings-ui/value_types/float_spec.rb +17 -0
  68. data/spec/lib/rails-settings-ui/value_types/hash_spec.rb +26 -0
  69. data/spec/lib/rails-settings-ui/value_types/string_spec.rb +10 -0
  70. data/spec/lib/rails-settings-ui/value_types/symbol_spec.rb +10 -0
  71. data/spec/spec_helper.rb +27 -0
  72. metadata +175 -3
@@ -0,0 +1,27 @@
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 that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140320182332) do
15
+
16
+ create_table "settings", force: true do |t|
17
+ t.string "var", null: false
18
+ t.text "value"
19
+ t.integer "thing_id"
20
+ t.string "thing_type", limit: 30
21
+ t.datetime "created_at"
22
+ t.datetime "updated_at"
23
+ end
24
+
25
+ add_index "settings", ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true
26
+
27
+ end
Binary file
@@ -0,0 +1,264 @@
1
+  (1.0ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2
+  (0.7ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
3
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
7
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
8
+  (1.0ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
9
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
10
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
11
+  (0.1ms) SELECT version FROM "schema_migrations"
12
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
13
+  (5.5ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
14
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
15
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
16
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
+  (0.1ms) SELECT version FROM "schema_migrations"
18
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
19
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
20
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
21
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
22
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (0.1ms) SELECT version FROM "schema_migrations"
24
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
25
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
26
+  (1.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
27
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
28
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
29
+  (0.1ms) SELECT version FROM "schema_migrations"
30
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
31
+  (1.1ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
32
+  (1.0ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
33
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
34
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
35
+  (0.1ms) SELECT version FROM "schema_migrations"
36
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
37
+  (5.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
38
+  (1.1ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
39
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
40
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
+  (0.1ms) SELECT version FROM "schema_migrations"
42
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
43
+  (5.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
44
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
45
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
46
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
47
+  (0.1ms) SELECT version FROM "schema_migrations"
48
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
49
+  (5.5ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
50
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
51
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
52
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
+  (0.1ms) SELECT version FROM "schema_migrations"
54
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
55
+  (2.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
56
+  (1.1ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
57
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
58
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
59
+  (0.2ms) SELECT version FROM "schema_migrations"
60
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
61
+  (5.8ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
62
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
63
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
64
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+  (0.1ms) SELECT version FROM "schema_migrations"
66
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
67
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
68
+  (0.8ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
69
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
70
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
71
+  (0.1ms) SELECT version FROM "schema_migrations"
72
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
73
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
74
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
75
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
76
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
77
+  (0.1ms) SELECT version FROM "schema_migrations"
78
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
79
+  (5.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
80
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
81
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
82
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
83
+  (0.1ms) SELECT version FROM "schema_migrations"
84
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
85
+  (1.0ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
86
+  (0.7ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
87
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
88
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
89
+  (0.1ms) SELECT version FROM "schema_migrations"
90
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
91
+  (1.0ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
92
+  (0.8ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
93
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
94
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (0.1ms) SELECT version FROM "schema_migrations"
96
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
97
+  (5.1ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
98
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
99
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
100
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
101
+  (0.1ms) SELECT version FROM "schema_migrations"
102
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
103
+  (5.1ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
104
+  (0.9ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
105
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
106
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
107
+  (0.1ms) SELECT version FROM "schema_migrations"
108
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
109
+  (1.2ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
110
+  (1.0ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
111
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
112
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
113
+  (0.1ms) SELECT version FROM "schema_migrations"
114
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
115
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
116
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
117
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
118
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
119
+  (0.1ms) SELECT version FROM "schema_migrations"
120
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
121
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
122
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
123
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
124
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
125
+  (0.1ms) SELECT version FROM "schema_migrations"
126
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
127
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
128
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
129
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
130
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
131
+  (0.1ms) SELECT version FROM "schema_migrations"
132
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
133
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
134
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
135
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
136
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
137
+  (0.1ms) SELECT version FROM "schema_migrations"
138
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
139
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
140
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
141
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
142
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
143
+  (0.1ms) SELECT version FROM "schema_migrations"
144
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
145
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
146
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
147
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
148
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
149
+  (0.1ms) SELECT version FROM "schema_migrations"
150
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
151
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
152
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
153
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
154
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
155
+  (0.1ms) SELECT version FROM "schema_migrations"
156
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
157
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
158
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
159
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
160
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
161
+  (0.1ms) SELECT version FROM "schema_migrations"
162
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
163
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
164
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
165
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
166
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
167
+  (0.1ms) SELECT version FROM "schema_migrations"
168
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
169
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
170
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
171
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
172
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
+  (0.1ms) SELECT version FROM "schema_migrations"
174
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
175
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
176
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
177
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
178
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
179
+  (0.1ms) SELECT version FROM "schema_migrations"
180
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
181
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
182
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
183
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
184
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
185
+  (0.1ms) SELECT version FROM "schema_migrations"
186
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
187
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
188
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
189
+  (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
190
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
191
+  (0.1ms) SELECT version FROM "schema_migrations"
192
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
193
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
194
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
195
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
196
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
197
+  (0.1ms) SELECT version FROM "schema_migrations"
198
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
199
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
200
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
201
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
202
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
203
+  (0.1ms) SELECT version FROM "schema_migrations"
204
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
205
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
206
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
207
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
208
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
209
+  (0.1ms) SELECT version FROM "schema_migrations"
210
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
211
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
212
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
213
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
214
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
215
+  (0.1ms) SELECT version FROM "schema_migrations"
216
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
217
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
218
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
219
+  (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
220
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
221
+  (0.1ms) SELECT version FROM "schema_migrations"
222
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
223
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
224
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
225
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
226
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+  (0.1ms) SELECT version FROM "schema_migrations"
228
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
229
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
230
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
231
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
232
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
233
+  (0.1ms) SELECT version FROM "schema_migrations"
234
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
235
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
236
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
237
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
238
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
239
+  (0.1ms) SELECT version FROM "schema_migrations"
240
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
241
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
242
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
243
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
244
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
245
+  (0.1ms) SELECT version FROM "schema_migrations"
246
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
247
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
248
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
249
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
250
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
251
+  (0.1ms) SELECT version FROM "schema_migrations"
252
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
253
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
254
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
255
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
256
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
257
+  (0.1ms) SELECT version FROM "schema_migrations"
258
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
259
+  (11.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
260
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
261
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
262
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
263
+  (0.1ms) SELECT version FROM "schema_migrations"
264
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
@@ -0,0 +1,3237 @@
1
+  (0.3ms) begin transaction
2
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:19:15 +0400
3
+ Processing by RailsSettingsUi::SettingsController#index as HTML
4
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
5
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.8ms)
6
+ Completed 200 OK in 47ms (Views: 43.5ms | ActiveRecord: 1.0ms)
7
+  (0.1ms) rollback transaction
8
+  (0.3ms) begin transaction
9
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:24:57 +0400
10
+ Processing by RailsSettingsUi::SettingsController#index as HTML
11
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
12
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (12.8ms)
13
+ Completed 200 OK in 36ms (Views: 32.0ms | ActiveRecord: 1.1ms)
14
+  (0.1ms) rollback transaction
15
+  (0.1ms) begin transaction
16
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:24:57 +0400
17
+ Processing by RailsSettingsUi::SettingsController#index as HTML
18
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
19
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
20
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.2ms)
21
+  (0.1ms) rollback transaction
22
+  (0.3ms) begin transaction
23
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:25:29 +0400
24
+ Processing by RailsSettingsUi::SettingsController#index as HTML
25
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
26
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.8ms)
27
+ Completed 200 OK in 27ms (Views: 23.4ms | ActiveRecord: 1.0ms)
28
+  (0.1ms) rollback transaction
29
+  (0.0ms) begin transaction
30
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:25:29 +0400
31
+ Processing by RailsSettingsUi::SettingsController#index as HTML
32
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
33
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
34
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
35
+  (0.1ms) rollback transaction
36
+  (0.3ms) begin transaction
37
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:17 +0400
38
+ Processing by RailsSettingsUi::SettingsController#index as HTML
39
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
40
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.3ms)
41
+ Completed 200 OK in 45ms (Views: 40.4ms | ActiveRecord: 1.2ms)
42
+  (0.1ms) rollback transaction
43
+  (0.0ms) begin transaction
44
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:18 +0400
45
+ Processing by RailsSettingsUi::SettingsController#index as HTML
46
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
47
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.9ms)
48
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
49
+  (0.1ms) rollback transaction
50
+  (0.1ms) begin transaction
51
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:18 +0400
52
+ Processing by RailsSettingsUi::SettingsController#index as HTML
53
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
54
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.3ms)
55
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.2ms)
56
+  (0.1ms) rollback transaction
57
+  (0.3ms) begin transaction
58
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:32 +0400
59
+ Processing by RailsSettingsUi::SettingsController#index as HTML
60
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
61
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (15.7ms)
62
+ Completed 200 OK in 49ms (Views: 44.3ms | ActiveRecord: 1.6ms)
63
+  (0.1ms) rollback transaction
64
+  (0.1ms) begin transaction
65
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:32 +0400
66
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
69
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 09:49:32 +0400
73
+ Processing by RailsSettingsUi::SettingsController#index as HTML
74
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
75
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
76
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
77
+  (0.1ms) rollback transaction
78
+  (0.3ms) begin transaction
79
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:00 +0400
80
+ Processing by RailsSettingsUi::SettingsController#index as HTML
81
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
82
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.9ms)
83
+ Completed 200 OK in 27ms (Views: 23.4ms | ActiveRecord: 1.0ms)
84
+  (0.1ms) rollback transaction
85
+  (0.1ms) begin transaction
86
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:00 +0400
87
+ Processing by RailsSettingsUi::SettingsController#index as HTML
88
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
89
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.3ms)
90
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.2ms)
91
+  (0.1ms) rollback transaction
92
+  (0.0ms) begin transaction
93
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:00 +0400
94
+ Processing by RailsSettingsUi::SettingsController#index as HTML
95
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
96
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
97
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.2ms)
98
+  (0.1ms) rollback transaction
99
+  (0.3ms) begin transaction
100
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:14 +0400
101
+ Processing by RailsSettingsUi::SettingsController#index as HTML
102
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
103
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.5ms)
104
+ Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 1.2ms)
105
+  (0.1ms) rollback transaction
106
+  (0.0ms) begin transaction
107
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:14 +0400
108
+ Processing by RailsSettingsUi::SettingsController#index as HTML
109
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
110
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
111
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
112
+  (0.1ms) rollback transaction
113
+  (0.0ms) begin transaction
114
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:00:14 +0400
115
+ Processing by RailsSettingsUi::SettingsController#index as HTML
116
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
117
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
118
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
119
+  (0.1ms) rollback transaction
120
+  (0.3ms) begin transaction
121
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:02:26 +0400
122
+ Processing by RailsSettingsUi::SettingsController#index as HTML
123
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
124
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.9ms)
125
+ Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 1.1ms)
126
+  (0.1ms) rollback transaction
127
+  (0.1ms) begin transaction
128
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:02:26 +0400
129
+ Processing by RailsSettingsUi::SettingsController#index as HTML
130
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
131
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
132
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.2ms)
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:02:26 +0400
136
+ Processing by RailsSettingsUi::SettingsController#index as HTML
137
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
138
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.9ms)
139
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.1ms)
140
+  (0.1ms) rollback transaction
141
+  (0.3ms) begin transaction
142
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:22 +0400
143
+ Processing by RailsSettingsUi::SettingsController#index as HTML
144
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
145
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.8ms)
146
+ Completed 200 OK in 27ms (Views: 23.4ms | ActiveRecord: 1.0ms)
147
+  (0.1ms) rollback transaction
148
+  (0.0ms) begin transaction
149
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:22 +0400
150
+ Processing by RailsSettingsUi::SettingsController#index as HTML
151
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
152
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
153
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:22 +0400
157
+ Processing by RailsSettingsUi::SettingsController#index as HTML
158
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
159
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.9ms)
160
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
161
+  (0.1ms) rollback transaction
162
+  (0.3ms) begin transaction
163
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:36 +0400
164
+ Processing by RailsSettingsUi::SettingsController#index as HTML
165
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
166
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.3ms)
167
+ Completed 200 OK in 39ms (Views: 34.1ms | ActiveRecord: 1.3ms)
168
+  (0.1ms) rollback transaction
169
+  (0.1ms) begin transaction
170
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:36 +0400
171
+ Processing by RailsSettingsUi::SettingsController#index as HTML
172
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
173
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.3ms)
174
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:03:36 +0400
178
+ Processing by RailsSettingsUi::SettingsController#index as HTML
179
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
180
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
181
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
182
+  (0.1ms) rollback transaction
183
+  (0.3ms) begin transaction
184
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:06:32 +0400
185
+ Processing by RailsSettingsUi::SettingsController#index as HTML
186
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
187
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.4ms)
188
+ Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 1.2ms)
189
+  (0.1ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:06:32 +0400
192
+ Processing by RailsSettingsUi::SettingsController#index as HTML
193
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
194
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
195
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
196
+  (0.1ms) rollback transaction
197
+  (0.1ms) begin transaction
198
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:06:32 +0400
199
+ Processing by RailsSettingsUi::SettingsController#index as HTML
200
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
201
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
202
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
203
+  (0.1ms) rollback transaction
204
+  (0.1ms) begin transaction
205
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:06:32 +0400
206
+ Processing by RailsSettingsUi::SettingsController#index as HTML
207
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
208
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
209
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.2ms)
210
+  (0.1ms) rollback transaction
211
+  (0.4ms) begin transaction
212
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:50 +0400
213
+ Processing by RailsSettingsUi::SettingsController#index as HTML
214
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
215
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.8ms)
216
+ Completed 200 OK in 27ms (Views: 23.5ms | ActiveRecord: 1.0ms)
217
+  (0.1ms) rollback transaction
218
+  (0.1ms) begin transaction
219
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:50 +0400
220
+ Processing by RailsSettingsUi::SettingsController#index as HTML
221
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
222
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.2ms)
223
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
224
+  (0.1ms) rollback transaction
225
+  (0.0ms) begin transaction
226
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:50 +0400
227
+ Processing by RailsSettingsUi::SettingsController#index as HTML
228
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
229
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.0ms)
230
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
231
+  (0.1ms) rollback transaction
232
+  (0.1ms) begin transaction
233
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:50 +0400
234
+ Processing by RailsSettingsUi::SettingsController#index as HTML
235
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
236
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
237
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
238
+  (0.1ms) rollback transaction
239
+  (0.0ms) begin transaction
240
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:50 +0400
241
+ Processing by RailsSettingsUi::SettingsController#index as HTML
242
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
243
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.8ms)
244
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
245
+  (0.1ms) rollback transaction
246
+  (0.3ms) begin transaction
247
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:58 +0400
248
+ Processing by RailsSettingsUi::SettingsController#index as HTML
249
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
250
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.9ms)
251
+ Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 1.0ms)
252
+  (0.1ms) rollback transaction
253
+  (0.1ms) begin transaction
254
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:58 +0400
255
+ Processing by RailsSettingsUi::SettingsController#index as HTML
256
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
257
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
258
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.1ms)
259
+  (0.1ms) rollback transaction
260
+  (0.0ms) begin transaction
261
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:58 +0400
262
+ Processing by RailsSettingsUi::SettingsController#index as HTML
263
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
264
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
265
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
266
+  (0.1ms) rollback transaction
267
+  (0.0ms) begin transaction
268
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:58 +0400
269
+ Processing by RailsSettingsUi::SettingsController#index as HTML
270
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
271
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
272
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
273
+  (0.1ms) rollback transaction
274
+  (0.0ms) begin transaction
275
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:08:58 +0400
276
+ Processing by RailsSettingsUi::SettingsController#index as HTML
277
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
278
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
279
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
280
+  (0.1ms) rollback transaction
281
+  (0.3ms) begin transaction
282
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
283
+ Processing by RailsSettingsUi::SettingsController#index as HTML
284
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
285
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.3ms)
286
+ Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 1.0ms)
287
+  (0.1ms) rollback transaction
288
+  (0.1ms) begin transaction
289
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
290
+ Processing by RailsSettingsUi::SettingsController#index as HTML
291
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
292
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
293
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
294
+  (0.1ms) rollback transaction
295
+  (0.1ms) begin transaction
296
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
297
+ Processing by RailsSettingsUi::SettingsController#index as HTML
298
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
299
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.2ms)
300
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.2ms)
301
+  (0.1ms) rollback transaction
302
+  (0.0ms) begin transaction
303
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
304
+ Processing by RailsSettingsUi::SettingsController#index as HTML
305
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
306
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.2ms)
307
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
308
+  (0.1ms) rollback transaction
309
+  (0.1ms) begin transaction
310
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
311
+ Processing by RailsSettingsUi::SettingsController#index as HTML
312
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
313
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.1ms)
314
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:12:15 +0400
318
+ Processing by RailsSettingsUi::SettingsController#index as HTML
319
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
320
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (1.7ms)
321
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
322
+  (0.1ms) rollback transaction
323
+  (0.7ms) begin transaction
324
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:56 +0400
325
+ Processing by RailsSettingsUi::SettingsController#index as HTML
326
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
327
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.2ms)
328
+ Completed 200 OK in 36ms (Views: 31.6ms | ActiveRecord: 1.2ms)
329
+  (0.1ms) rollback transaction
330
+  (0.0ms) begin transaction
331
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
332
+ Processing by RailsSettingsUi::SettingsController#index as HTML
333
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
334
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
335
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
336
+  (0.1ms) rollback transaction
337
+  (0.2ms) begin transaction
338
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
339
+ Processing by RailsSettingsUi::SettingsController#index as HTML
340
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
341
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
342
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
343
+  (0.1ms) rollback transaction
344
+  (0.1ms) begin transaction
345
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
346
+ Processing by RailsSettingsUi::SettingsController#index as HTML
347
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
348
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
349
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
350
+  (0.1ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
353
+ Processing by RailsSettingsUi::SettingsController#index as HTML
354
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
355
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
356
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
357
+  (0.1ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
360
+ Processing by RailsSettingsUi::SettingsController#index as HTML
361
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
362
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
363
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
364
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
365
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
366
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful."}, "commit"=>"Save all"}
367
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
368
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
369
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:27:57 +0400
373
+ Processing by RailsSettingsUi::SettingsController#index as HTML
374
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
375
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.2ms)
376
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
377
+  (0.1ms) rollback transaction
378
+  (0.3ms) begin transaction
379
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
380
+ Processing by RailsSettingsUi::SettingsController#index as HTML
381
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
382
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.4ms)
383
+ Completed 200 OK in 28ms (Views: 24.3ms | ActiveRecord: 1.0ms)
384
+  (0.1ms) rollback transaction
385
+  (0.1ms) begin transaction
386
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
387
+ Processing by RailsSettingsUi::SettingsController#index as HTML
388
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
389
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
390
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
391
+  (0.1ms) rollback transaction
392
+  (0.1ms) begin transaction
393
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
394
+ Processing by RailsSettingsUi::SettingsController#index as HTML
395
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
396
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
397
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
398
+  (0.1ms) rollback transaction
399
+  (0.1ms) begin transaction
400
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
401
+ Processing by RailsSettingsUi::SettingsController#index as HTML
402
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
403
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
404
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
405
+  (0.1ms) rollback transaction
406
+  (0.1ms) begin transaction
407
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
408
+ Processing by RailsSettingsUi::SettingsController#index as HTML
409
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
410
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
411
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
412
+  (0.1ms) rollback transaction
413
+  (0.1ms) begin transaction
414
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
415
+ Processing by RailsSettingsUi::SettingsController#index as HTML
416
+ Settings Load (0.3ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
417
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.1ms)
418
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms)
419
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
420
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
421
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
422
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
423
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
424
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
425
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:28:48 +0400
428
+ Processing by RailsSettingsUi::SettingsController#index as HTML
429
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
430
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
431
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
432
+  (0.1ms) rollback transaction
433
+  (0.3ms) begin transaction
434
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
435
+ Processing by RailsSettingsUi::SettingsController#index as HTML
436
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
437
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.6ms)
438
+ Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 1.0ms)
439
+  (0.1ms) rollback transaction
440
+  (0.1ms) begin transaction
441
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
442
+ Processing by RailsSettingsUi::SettingsController#index as HTML
443
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
444
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
445
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
446
+  (0.1ms) rollback transaction
447
+  (0.1ms) begin transaction
448
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
449
+ Processing by RailsSettingsUi::SettingsController#index as HTML
450
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
451
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
452
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
453
+  (0.1ms) rollback transaction
454
+  (0.0ms) begin transaction
455
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
456
+ Processing by RailsSettingsUi::SettingsController#index as HTML
457
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
458
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
459
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
460
+  (0.1ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
463
+ Processing by RailsSettingsUi::SettingsController#index as HTML
464
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
465
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
466
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
467
+  (0.1ms) rollback transaction
468
+  (0.0ms) begin transaction
469
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
470
+ Processing by RailsSettingsUi::SettingsController#index as HTML
471
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
472
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.3ms)
473
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
474
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
475
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
476
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
477
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
478
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
479
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
480
+  (0.1ms) rollback transaction
481
+  (0.0ms) begin transaction
482
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:29:03 +0400
483
+ Processing by RailsSettingsUi::SettingsController#index as HTML
484
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
485
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.3ms)
486
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.1ms)
487
+  (0.1ms) rollback transaction
488
+  (0.3ms) begin transaction
489
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
490
+ Processing by RailsSettingsUi::SettingsController#index as HTML
491
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
492
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (15.5ms)
493
+ Completed 200 OK in 44ms (Views: 39.7ms | ActiveRecord: 1.1ms)
494
+  (0.1ms) rollback transaction
495
+  (0.1ms) begin transaction
496
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
497
+ Processing by RailsSettingsUi::SettingsController#index as HTML
498
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
499
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
500
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
501
+  (0.1ms) rollback transaction
502
+  (0.1ms) begin transaction
503
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
504
+ Processing by RailsSettingsUi::SettingsController#index as HTML
505
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
506
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
507
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
508
+  (0.1ms) rollback transaction
509
+  (0.0ms) begin transaction
510
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
511
+ Processing by RailsSettingsUi::SettingsController#index as HTML
512
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
513
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
514
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
515
+  (0.1ms) rollback transaction
516
+  (0.0ms) begin transaction
517
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
518
+ Processing by RailsSettingsUi::SettingsController#index as HTML
519
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
520
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
521
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.2ms)
522
+  (0.1ms) rollback transaction
523
+  (0.1ms) begin transaction
524
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
525
+ Processing by RailsSettingsUi::SettingsController#index as HTML
526
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
527
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
528
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
529
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
530
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
531
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
532
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
533
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
534
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.2ms)
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
538
+ Processing by RailsSettingsUi::SettingsController#index as HTML
539
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
540
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
541
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
542
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
543
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
544
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
545
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
546
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
547
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
548
+  (0.1ms) rollback transaction
549
+  (0.0ms) begin transaction
550
+ Started GET "/settings" for 127.0.0.1 at 2014-03-25 10:49:30 +0400
551
+ Processing by RailsSettingsUi::SettingsController#index as HTML
552
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
553
+ Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
554
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
555
+  (0.1ms) rollback transaction
556
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
557
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
558
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
559
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
560
+  (0.1ms) SELECT version FROM "schema_migrations"
561
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
562
+  (0.1ms) begin transaction
563
+  (0.1ms) rollback transaction
564
+  (0.1ms) begin transaction
565
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+  (0.1ms) rollback transaction
568
+  (0.1ms) begin transaction
569
+  (0.1ms) rollback transaction
570
+  (0.1ms) begin transaction
571
+  (0.1ms) rollback transaction
572
+  (0.1ms) begin transaction
573
+  (0.1ms) rollback transaction
574
+  (0.0ms) begin transaction
575
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+  (0.1ms) rollback transaction
578
+  (0.1ms) begin transaction
579
+  (0.1ms) rollback transaction
580
+  (0.1ms) begin transaction
581
+  (0.1ms) rollback transaction
582
+  (0.1ms) begin transaction
583
+  (0.1ms) rollback transaction
584
+  (0.1ms) begin transaction
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+  (0.1ms) rollback transaction
588
+  (0.1ms) begin transaction
589
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:09 +0400
590
+ Processing by RailsSettingsUi::SettingsController#index as HTML
591
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
592
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (11.1ms)
593
+ Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 0.5ms)
594
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 21:34:09 +0400
595
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
596
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"test", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
597
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
598
+ Completed 500 Internal Server Error in 1ms
599
+  (0.1ms) rollback transaction
600
+  (0.1ms) begin transaction
601
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:09 +0400
602
+ Processing by RailsSettingsUi::SettingsController#index as HTML
603
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
604
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
605
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
606
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 21:34:09 +0400
607
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
608
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"test", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
609
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
610
+ Completed 500 Internal Server Error in 1ms
611
+  (0.1ms) rollback transaction
612
+  (0.1ms) begin transaction
613
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:09 +0400
614
+ Processing by RailsSettingsUi::SettingsController#index as HTML
615
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
616
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
617
+ Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.2ms)
618
+  (0.1ms) rollback transaction
619
+  (0.1ms) begin transaction
620
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:10 +0400
621
+ Processing by RailsSettingsUi::SettingsController#index as HTML
622
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
623
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
624
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
625
+  (0.1ms) rollback transaction
626
+  (0.1ms) begin transaction
627
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:10 +0400
628
+ Processing by RailsSettingsUi::SettingsController#index as HTML
629
+ Settings Load (0.3ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
630
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
631
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms)
632
+  (0.1ms) rollback transaction
633
+  (0.1ms) begin transaction
634
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:10 +0400
635
+ Processing by RailsSettingsUi::SettingsController#index as HTML
636
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
637
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
638
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
639
+  (0.1ms) rollback transaction
640
+  (0.1ms) begin transaction
641
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:10 +0400
642
+ Processing by RailsSettingsUi::SettingsController#index as HTML
643
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
644
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
645
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
646
+  (0.1ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:34:10 +0400
649
+ Processing by RailsSettingsUi::SettingsController#index as HTML
650
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
651
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
652
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
653
+  (0.1ms) rollback transaction
654
+  (0.1ms) begin transaction
655
+  (0.1ms) rollback transaction
656
+  (0.0ms) begin transaction
657
+  (0.1ms) rollback transaction
658
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
659
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
660
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
661
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
662
+  (0.1ms) SELECT version FROM "schema_migrations"
663
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
664
+  (0.1ms) begin transaction
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+  (0.1ms) rollback transaction
668
+  (0.1ms) begin transaction
669
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
670
+ Processing by RailsSettingsUi::SettingsController#index as HTML
671
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
672
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.1ms)
673
+ Completed 200 OK in 33ms (Views: 29.3ms | ActiveRecord: 0.5ms)
674
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
675
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
676
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
677
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
678
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
679
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
680
+  (0.1ms) rollback transaction
681
+  (0.1ms) begin transaction
682
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
683
+ Processing by RailsSettingsUi::SettingsController#index as HTML
684
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
685
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
686
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
687
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
688
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
689
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
690
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
691
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
692
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
693
+  (0.1ms) rollback transaction
694
+  (0.1ms) begin transaction
695
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
696
+ Processing by RailsSettingsUi::SettingsController#index as HTML
697
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
698
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
699
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
700
+  (0.1ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
703
+ Processing by RailsSettingsUi::SettingsController#index as HTML
704
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
705
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
706
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
707
+  (0.1ms) rollback transaction
708
+  (0.1ms) begin transaction
709
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
710
+ Processing by RailsSettingsUi::SettingsController#index as HTML
711
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
712
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
713
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
714
+  (0.1ms) rollback transaction
715
+  (0.1ms) begin transaction
716
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
717
+ Processing by RailsSettingsUi::SettingsController#index as HTML
718
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
719
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
720
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
721
+  (0.1ms) rollback transaction
722
+  (0.1ms) begin transaction
723
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
724
+ Processing by RailsSettingsUi::SettingsController#index as HTML
725
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
726
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
727
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
728
+  (0.1ms) rollback transaction
729
+  (0.1ms) begin transaction
730
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 21:54:40 +0400
731
+ Processing by RailsSettingsUi::SettingsController#index as HTML
732
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
733
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
734
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
735
+  (0.1ms) rollback transaction
736
+  (0.1ms) begin transaction
737
+  (0.1ms) rollback transaction
738
+  (0.1ms) begin transaction
739
+  (0.1ms) rollback transaction
740
+  (0.1ms) begin transaction
741
+  (0.1ms) rollback transaction
742
+  (0.0ms) begin transaction
743
+  (0.1ms) rollback transaction
744
+  (0.1ms) begin transaction
745
+  (0.1ms) rollback transaction
746
+  (0.1ms) begin transaction
747
+  (0.1ms) rollback transaction
748
+  (0.0ms) begin transaction
749
+  (0.1ms) rollback transaction
750
+  (0.1ms) begin transaction
751
+  (0.1ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+  (0.1ms) rollback transaction
754
+  (0.1ms) begin transaction
755
+  (0.0ms) rollback transaction
756
+  (0.1ms) begin transaction
757
+  (0.1ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+  (0.1ms) rollback transaction
760
+  (0.1ms) begin transaction
761
+  (0.1ms) rollback transaction
762
+  (0.1ms) begin transaction
763
+  (0.1ms) rollback transaction
764
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
765
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
766
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
767
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
768
+  (0.1ms) SELECT version FROM "schema_migrations"
769
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
770
+  (0.1ms) begin transaction
771
+  (0.1ms) rollback transaction
772
+  (0.1ms) begin transaction
773
+  (0.1ms) rollback transaction
774
+  (0.1ms) begin transaction
775
+  (0.1ms) rollback transaction
776
+  (0.1ms) begin transaction
777
+  (0.1ms) rollback transaction
778
+  (0.1ms) begin transaction
779
+  (0.1ms) rollback transaction
780
+  (0.1ms) begin transaction
781
+  (0.1ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+  (0.1ms) rollback transaction
784
+  (0.1ms) begin transaction
785
+  (0.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+  (0.1ms) rollback transaction
788
+  (0.0ms) begin transaction
789
+  (0.1ms) rollback transaction
790
+  (0.1ms) begin transaction
791
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
792
+ Processing by RailsSettingsUi::SettingsController#index as HTML
793
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
794
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.9ms)
795
+ Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.4ms)
796
+  (0.1ms) rollback transaction
797
+  (0.1ms) begin transaction
798
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
799
+ Processing by RailsSettingsUi::SettingsController#index as HTML
800
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
801
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
802
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
803
+  (0.1ms) rollback transaction
804
+  (0.1ms) begin transaction
805
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
806
+ Processing by RailsSettingsUi::SettingsController#index as HTML
807
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
808
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
809
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
810
+  (0.1ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
813
+ Processing by RailsSettingsUi::SettingsController#index as HTML
814
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
815
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
816
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
817
+  (0.1ms) rollback transaction
818
+  (0.1ms) begin transaction
819
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
820
+ Processing by RailsSettingsUi::SettingsController#index as HTML
821
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
822
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
823
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
824
+  (0.1ms) rollback transaction
825
+  (0.1ms) begin transaction
826
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
827
+ Processing by RailsSettingsUi::SettingsController#index as HTML
828
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
829
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
830
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
831
+  (0.1ms) rollback transaction
832
+  (0.1ms) begin transaction
833
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
834
+ Processing by RailsSettingsUi::SettingsController#index as HTML
835
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
836
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
837
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
838
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
839
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
840
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"test", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
841
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
842
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.9ms)
843
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
844
+  (0.1ms) rollback transaction
845
+  (0.1ms) begin transaction
846
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
847
+ Processing by RailsSettingsUi::SettingsController#index as HTML
848
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
849
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
850
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
851
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:17:45 +0400
852
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
853
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"test", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
854
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
855
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
856
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
857
+  (0.1ms) rollback transaction
858
+  (0.1ms) begin transaction
859
+  (0.1ms) rollback transaction
860
+  (0.1ms) begin transaction
861
+  (0.1ms) rollback transaction
862
+  (0.0ms) begin transaction
863
+  (0.1ms) rollback transaction
864
+  (0.1ms) begin transaction
865
+  (0.1ms) rollback transaction
866
+  (0.1ms) begin transaction
867
+  (0.1ms) rollback transaction
868
+  (0.0ms) begin transaction
869
+  (0.1ms) rollback transaction
870
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
871
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
872
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
873
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
874
+  (0.1ms) SELECT version FROM "schema_migrations"
875
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
876
+  (0.1ms) begin transaction
877
+  (0.1ms) rollback transaction
878
+  (0.1ms) begin transaction
879
+  (0.1ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
882
+ Processing by RailsSettingsUi::SettingsController#index as HTML
883
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
884
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.1ms)
885
+ Completed 200 OK in 33ms (Views: 29.3ms | ActiveRecord: 0.4ms)
886
+  (0.1ms) rollback transaction
887
+  (0.1ms) begin transaction
888
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
889
+ Processing by RailsSettingsUi::SettingsController#index as HTML
890
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
891
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
892
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
893
+  (0.1ms) rollback transaction
894
+  (0.1ms) begin transaction
895
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
896
+ Processing by RailsSettingsUi::SettingsController#index as HTML
897
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
898
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
899
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
900
+  (0.1ms) rollback transaction
901
+  (0.1ms) begin transaction
902
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
903
+ Processing by RailsSettingsUi::SettingsController#index as HTML
904
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
905
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
906
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
907
+  (0.1ms) rollback transaction
908
+  (0.1ms) begin transaction
909
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
910
+ Processing by RailsSettingsUi::SettingsController#index as HTML
911
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
912
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
913
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
914
+  (0.1ms) rollback transaction
915
+  (0.1ms) begin transaction
916
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
917
+ Processing by RailsSettingsUi::SettingsController#index as HTML
918
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
919
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
920
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
921
+  (0.1ms) rollback transaction
922
+  (0.1ms) begin transaction
923
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
924
+ Processing by RailsSettingsUi::SettingsController#index as HTML
925
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
926
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
927
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
928
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
929
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
930
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
931
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
932
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
933
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
934
+  (0.1ms) rollback transaction
935
+  (0.1ms) begin transaction
936
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
937
+ Processing by RailsSettingsUi::SettingsController#index as HTML
938
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
939
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
940
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
941
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:18:05 +0400
942
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
943
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
944
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
945
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
946
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
947
+  (0.1ms) rollback transaction
948
+  (0.1ms) begin transaction
949
+  (0.1ms) rollback transaction
950
+  (0.1ms) begin transaction
951
+  (0.1ms) rollback transaction
952
+  (0.1ms) begin transaction
953
+  (0.1ms) rollback transaction
954
+  (0.1ms) begin transaction
955
+  (0.1ms) rollback transaction
956
+  (0.1ms) begin transaction
957
+  (0.1ms) rollback transaction
958
+  (0.1ms) begin transaction
959
+  (0.1ms) rollback transaction
960
+  (0.1ms) begin transaction
961
+  (0.1ms) rollback transaction
962
+  (0.1ms) begin transaction
963
+  (0.1ms) rollback transaction
964
+  (0.1ms) begin transaction
965
+  (0.1ms) rollback transaction
966
+  (0.1ms) begin transaction
967
+  (0.1ms) rollback transaction
968
+  (0.1ms) begin transaction
969
+  (0.1ms) rollback transaction
970
+  (0.0ms) begin transaction
971
+  (0.1ms) rollback transaction
972
+  (0.1ms) begin transaction
973
+  (0.1ms) rollback transaction
974
+  (0.0ms) begin transaction
975
+  (0.1ms) rollback transaction
976
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
977
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
978
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
979
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
980
+  (0.1ms) SELECT version FROM "schema_migrations"
981
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
982
+  (0.1ms) begin transaction
983
+  (0.1ms) rollback transaction
984
+  (0.1ms) begin transaction
985
+  (0.1ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+  (0.1ms) rollback transaction
988
+  (0.0ms) begin transaction
989
+  (0.1ms) rollback transaction
990
+  (0.1ms) begin transaction
991
+  (0.1ms) rollback transaction
992
+  (0.1ms) begin transaction
993
+  (0.1ms) rollback transaction
994
+  (0.0ms) begin transaction
995
+  (0.1ms) rollback transaction
996
+  (0.1ms) begin transaction
997
+  (0.1ms) rollback transaction
998
+  (0.0ms) begin transaction
999
+  (0.1ms) rollback transaction
1000
+  (0.1ms) begin transaction
1001
+  (0.1ms) rollback transaction
1002
+  (0.1ms) begin transaction
1003
+  (0.1ms) rollback transaction
1004
+  (0.1ms) begin transaction
1005
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1006
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1007
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1008
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.1ms)
1009
+ Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.4ms)
1010
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1011
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1012
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1013
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1014
+ Completed 500 Internal Server Error in 1ms
1015
+  (0.1ms) rollback transaction
1016
+  (0.1ms) begin transaction
1017
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1018
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1019
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1020
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1021
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1022
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1023
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1024
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1025
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1026
+ Completed 500 Internal Server Error in 1ms
1027
+  (0.1ms) rollback transaction
1028
+  (0.1ms) begin transaction
1029
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1030
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1031
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1032
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
1033
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1034
+  (0.1ms) rollback transaction
1035
+  (0.1ms) begin transaction
1036
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1037
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1038
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1039
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1040
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
1041
+  (0.1ms) rollback transaction
1042
+  (0.1ms) begin transaction
1043
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1044
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1045
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1046
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1047
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1048
+  (0.1ms) rollback transaction
1049
+  (0.1ms) begin transaction
1050
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1051
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1052
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1053
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1054
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1055
+  (0.1ms) rollback transaction
1056
+  (0.1ms) begin transaction
1057
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1058
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1059
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1060
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1061
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1062
+  (0.2ms) rollback transaction
1063
+  (0.1ms) begin transaction
1064
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:55:25 +0400
1065
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1066
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1067
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1068
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1069
+  (0.1ms) rollback transaction
1070
+  (0.1ms) begin transaction
1071
+  (0.1ms) rollback transaction
1072
+  (0.1ms) begin transaction
1073
+  (0.1ms) rollback transaction
1074
+  (0.0ms) begin transaction
1075
+  (0.1ms) rollback transaction
1076
+  (0.1ms) begin transaction
1077
+  (0.1ms) rollback transaction
1078
+  (0.0ms) begin transaction
1079
+  (0.1ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+  (0.1ms) rollback transaction
1082
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1083
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1084
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1085
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1086
+  (0.1ms) SELECT version FROM "schema_migrations"
1087
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1088
+  (0.1ms) begin transaction
1089
+  (0.1ms) rollback transaction
1090
+  (0.1ms) begin transaction
1091
+  (0.1ms) rollback transaction
1092
+  (0.1ms) begin transaction
1093
+  (0.1ms) rollback transaction
1094
+  (0.1ms) begin transaction
1095
+  (0.1ms) rollback transaction
1096
+  (0.0ms) begin transaction
1097
+  (0.1ms) rollback transaction
1098
+  (0.1ms) begin transaction
1099
+  (0.1ms) rollback transaction
1100
+  (0.0ms) begin transaction
1101
+  (0.1ms) rollback transaction
1102
+  (0.1ms) begin transaction
1103
+  (0.1ms) rollback transaction
1104
+  (0.0ms) begin transaction
1105
+  (0.1ms) rollback transaction
1106
+  (0.1ms) begin transaction
1107
+  (0.1ms) rollback transaction
1108
+  (0.1ms) begin transaction
1109
+  (0.1ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+  (0.1ms) rollback transaction
1112
+  (0.1ms) begin transaction
1113
+  (0.1ms) rollback transaction
1114
+  (0.1ms) begin transaction
1115
+  (0.1ms) rollback transaction
1116
+  (0.0ms) begin transaction
1117
+  (0.1ms) rollback transaction
1118
+  (0.1ms) begin transaction
1119
+  (0.1ms) rollback transaction
1120
+  (0.1ms) begin transaction
1121
+  (0.0ms) rollback transaction
1122
+  (0.1ms) begin transaction
1123
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1124
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1125
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1126
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.4ms)
1127
+ Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.4ms)
1128
+  (0.1ms) rollback transaction
1129
+  (0.1ms) begin transaction
1130
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1131
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1132
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1133
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1134
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1135
+  (0.1ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1138
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1139
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1140
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1141
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
1142
+  (0.1ms) rollback transaction
1143
+  (0.1ms) begin transaction
1144
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1145
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1146
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1147
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
1148
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
1149
+  (0.1ms) rollback transaction
1150
+  (0.1ms) begin transaction
1151
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1152
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1153
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1154
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1155
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1156
+  (0.1ms) rollback transaction
1157
+  (0.1ms) begin transaction
1158
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1159
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1160
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1161
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
1162
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
1163
+  (0.1ms) rollback transaction
1164
+  (0.1ms) begin transaction
1165
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1166
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1167
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1168
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1169
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1170
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1171
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1172
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1173
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1174
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1175
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1176
+  (0.1ms) rollback transaction
1177
+  (0.1ms) begin transaction
1178
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1179
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1180
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1181
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
1182
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
1183
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:56:46 +0400
1184
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1185
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1186
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1187
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.9ms)
1188
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
1189
+  (0.1ms) rollback transaction
1190
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1191
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1192
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1193
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1194
+  (0.1ms) SELECT version FROM "schema_migrations"
1195
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1196
+  (0.1ms) begin transaction
1197
+  (0.1ms) rollback transaction
1198
+  (0.1ms) begin transaction
1199
+  (0.1ms) rollback transaction
1200
+  (0.1ms) begin transaction
1201
+  (0.1ms) rollback transaction
1202
+  (0.0ms) begin transaction
1203
+  (0.1ms) rollback transaction
1204
+  (0.0ms) begin transaction
1205
+  (0.0ms) rollback transaction
1206
+  (0.0ms) begin transaction
1207
+  (0.0ms) rollback transaction
1208
+  (0.0ms) begin transaction
1209
+  (0.0ms) rollback transaction
1210
+  (0.0ms) begin transaction
1211
+  (0.0ms) rollback transaction
1212
+  (0.1ms) begin transaction
1213
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1214
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1215
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1216
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.1ms)
1217
+ Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.4ms)
1218
+  (0.1ms) rollback transaction
1219
+  (0.1ms) begin transaction
1220
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1221
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1222
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1223
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1224
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1225
+  (0.1ms) rollback transaction
1226
+  (0.1ms) begin transaction
1227
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1228
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1229
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1230
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1231
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1232
+  (0.1ms) rollback transaction
1233
+  (0.1ms) begin transaction
1234
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1235
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1236
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1237
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
1238
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
1239
+  (0.1ms) rollback transaction
1240
+  (0.1ms) begin transaction
1241
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1242
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1243
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1244
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1245
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1246
+  (0.1ms) rollback transaction
1247
+  (0.1ms) begin transaction
1248
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1249
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1250
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1251
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
1252
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
1253
+  (0.1ms) rollback transaction
1254
+  (0.1ms) begin transaction
1255
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1256
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1257
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1258
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1259
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1260
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1261
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1262
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1263
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1264
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1265
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
1266
+  (0.1ms) rollback transaction
1267
+  (0.1ms) begin transaction
1268
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1269
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1270
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1271
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1272
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1273
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:57:04 +0400
1274
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1275
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1276
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1277
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1278
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1279
+  (0.1ms) rollback transaction
1280
+  (0.1ms) begin transaction
1281
+  (0.1ms) rollback transaction
1282
+  (0.1ms) begin transaction
1283
+  (0.1ms) rollback transaction
1284
+  (0.1ms) begin transaction
1285
+  (0.1ms) rollback transaction
1286
+  (0.1ms) begin transaction
1287
+  (0.1ms) rollback transaction
1288
+  (0.1ms) begin transaction
1289
+  (0.1ms) rollback transaction
1290
+  (0.1ms) begin transaction
1291
+  (0.1ms) rollback transaction
1292
+  (0.1ms) begin transaction
1293
+  (0.1ms) rollback transaction
1294
+  (0.1ms) begin transaction
1295
+  (0.1ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+  (0.1ms) rollback transaction
1298
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1299
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1300
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1301
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1302
+  (0.1ms) SELECT version FROM "schema_migrations"
1303
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1304
+  (0.1ms) begin transaction
1305
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:28 +0400
1306
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1307
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1308
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (13.9ms)
1309
+ Completed 200 OK in 32ms (Views: 28.8ms | ActiveRecord: 0.4ms)
1310
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:57:28 +0400
1311
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1312
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1313
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1314
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
1315
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1316
+  (0.1ms) rollback transaction
1317
+  (0.1ms) begin transaction
1318
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1319
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1320
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1321
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1322
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1323
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1324
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1325
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1326
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1327
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
1328
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
1329
+  (0.1ms) rollback transaction
1330
+  (0.1ms) begin transaction
1331
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1332
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1333
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1334
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
1335
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
1336
+  (0.1ms) rollback transaction
1337
+  (0.1ms) begin transaction
1338
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1339
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1340
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1341
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1342
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1343
+  (0.1ms) rollback transaction
1344
+  (0.1ms) begin transaction
1345
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1346
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1347
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1348
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1349
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1350
+  (0.1ms) rollback transaction
1351
+  (0.1ms) begin transaction
1352
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1353
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1354
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1355
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1356
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1357
+  (0.1ms) rollback transaction
1358
+  (0.1ms) begin transaction
1359
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1360
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1361
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1362
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1363
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1364
+  (0.1ms) rollback transaction
1365
+  (0.1ms) begin transaction
1366
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:57:29 +0400
1367
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1368
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1369
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1370
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1371
+  (0.1ms) rollback transaction
1372
+  (0.1ms) begin transaction
1373
+  (0.1ms) rollback transaction
1374
+  (0.1ms) begin transaction
1375
+  (0.1ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+  (0.1ms) rollback transaction
1378
+  (0.0ms) begin transaction
1379
+  (0.1ms) rollback transaction
1380
+  (0.1ms) begin transaction
1381
+  (0.1ms) rollback transaction
1382
+  (0.0ms) begin transaction
1383
+  (0.1ms) rollback transaction
1384
+  (0.1ms) begin transaction
1385
+  (0.1ms) rollback transaction
1386
+  (0.1ms) begin transaction
1387
+  (0.1ms) rollback transaction
1388
+  (0.0ms) begin transaction
1389
+  (0.1ms) rollback transaction
1390
+  (0.1ms) begin transaction
1391
+  (0.0ms) rollback transaction
1392
+  (0.1ms) begin transaction
1393
+  (0.1ms) rollback transaction
1394
+  (0.0ms) begin transaction
1395
+  (0.1ms) rollback transaction
1396
+  (0.1ms) begin transaction
1397
+  (0.1ms) rollback transaction
1398
+  (0.1ms) begin transaction
1399
+  (0.1ms) rollback transaction
1400
+  (0.1ms) begin transaction
1401
+  (0.1ms) rollback transaction
1402
+  (0.1ms) begin transaction
1403
+  (0.1ms) rollback transaction
1404
+  (0.0ms) begin transaction
1405
+  (0.1ms) rollback transaction
1406
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1407
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1408
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1409
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1410
+  (0.1ms) SELECT version FROM "schema_migrations"
1411
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1412
+  (0.1ms) begin transaction
1413
+  (0.1ms) rollback transaction
1414
+  (0.1ms) begin transaction
1415
+  (0.1ms) rollback transaction
1416
+  (0.1ms) begin transaction
1417
+  (0.1ms) rollback transaction
1418
+  (0.1ms) begin transaction
1419
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1420
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1421
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1422
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.9ms)
1423
+ Completed 200 OK in 28ms (Views: 24.0ms | ActiveRecord: 0.5ms)
1424
+  (0.1ms) rollback transaction
1425
+  (0.1ms) begin transaction
1426
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1427
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1428
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1429
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1430
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1431
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1432
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1433
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1434
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1435
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
1436
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1437
+  (0.1ms) rollback transaction
1438
+  (0.1ms) begin transaction
1439
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1440
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1441
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1442
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1443
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1444
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1445
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1446
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1447
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1448
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.0ms)
1449
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
1450
+  (0.1ms) rollback transaction
1451
+  (0.1ms) begin transaction
1452
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1453
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1454
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1455
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1456
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1457
+  (0.1ms) rollback transaction
1458
+  (0.1ms) begin transaction
1459
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1460
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1461
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1462
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1463
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1464
+  (0.1ms) rollback transaction
1465
+  (0.1ms) begin transaction
1466
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1467
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1468
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1469
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
1470
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
1471
+  (0.1ms) rollback transaction
1472
+  (0.1ms) begin transaction
1473
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1474
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1475
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1476
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1477
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1478
+  (0.1ms) rollback transaction
1479
+  (0.1ms) begin transaction
1480
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:34 +0400
1481
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1482
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1483
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1484
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1485
+  (0.1ms) rollback transaction
1486
+  (0.1ms) begin transaction
1487
+  (0.1ms) rollback transaction
1488
+  (0.1ms) begin transaction
1489
+  (0.1ms) rollback transaction
1490
+  (0.1ms) begin transaction
1491
+  (0.1ms) rollback transaction
1492
+  (0.1ms) begin transaction
1493
+  (0.1ms) rollback transaction
1494
+  (0.1ms) begin transaction
1495
+  (0.1ms) rollback transaction
1496
+  (0.0ms) begin transaction
1497
+  (0.1ms) rollback transaction
1498
+  (0.0ms) begin transaction
1499
+  (0.1ms) rollback transaction
1500
+  (0.0ms) begin transaction
1501
+  (0.1ms) rollback transaction
1502
+  (0.1ms) begin transaction
1503
+  (0.1ms) rollback transaction
1504
+  (0.0ms) begin transaction
1505
+  (0.1ms) rollback transaction
1506
+  (0.0ms) begin transaction
1507
+  (0.0ms) rollback transaction
1508
+  (0.0ms) begin transaction
1509
+  (0.1ms) rollback transaction
1510
+  (0.0ms) begin transaction
1511
+  (0.1ms) rollback transaction
1512
+  (0.1ms) begin transaction
1513
+  (0.1ms) rollback transaction
1514
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1515
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1516
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1517
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1518
+  (0.1ms) SELECT version FROM "schema_migrations"
1519
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1520
+  (0.1ms) begin transaction
1521
+  (0.1ms) rollback transaction
1522
+  (0.1ms) begin transaction
1523
+  (0.1ms) rollback transaction
1524
+  (0.1ms) begin transaction
1525
+  (0.1ms) rollback transaction
1526
+  (0.1ms) begin transaction
1527
+  (0.1ms) rollback transaction
1528
+  (0.0ms) begin transaction
1529
+  (0.1ms) rollback transaction
1530
+  (0.1ms) begin transaction
1531
+  (0.1ms) rollback transaction
1532
+  (0.1ms) begin transaction
1533
+  (0.1ms) rollback transaction
1534
+  (0.0ms) begin transaction
1535
+  (0.1ms) rollback transaction
1536
+  (0.0ms) begin transaction
1537
+  (0.1ms) rollback transaction
1538
+  (0.1ms) begin transaction
1539
+  (0.1ms) rollback transaction
1540
+  (0.0ms) begin transaction
1541
+  (0.1ms) rollback transaction
1542
+  (0.0ms) begin transaction
1543
+  (0.1ms) rollback transaction
1544
+  (0.1ms) begin transaction
1545
+  (0.0ms) rollback transaction
1546
+  (0.0ms) begin transaction
1547
+  (0.0ms) rollback transaction
1548
+  (0.1ms) begin transaction
1549
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:40 +0400
1550
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1551
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1552
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.7ms)
1553
+ Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.4ms)
1554
+  (0.1ms) rollback transaction
1555
+  (0.1ms) begin transaction
1556
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:40 +0400
1557
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1558
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1559
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1560
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
1561
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1562
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1563
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1564
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1565
+ Completed 500 Internal Server Error in 1ms
1566
+  (0.1ms) rollback transaction
1567
+  (0.1ms) begin transaction
1568
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1569
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1570
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1571
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1572
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1573
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1574
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1575
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1576
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1577
+ Completed 500 Internal Server Error in 1ms
1578
+  (0.1ms) rollback transaction
1579
+  (0.1ms) begin transaction
1580
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1581
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1582
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1583
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1584
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1585
+  (0.1ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1588
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1589
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1590
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1591
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1592
+  (0.1ms) rollback transaction
1593
+  (0.1ms) begin transaction
1594
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1595
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1596
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1597
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1598
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1599
+  (0.1ms) rollback transaction
1600
+  (0.1ms) begin transaction
1601
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1602
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1603
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1604
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
1605
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1606
+  (0.1ms) rollback transaction
1607
+  (0.1ms) begin transaction
1608
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 22:59:41 +0400
1609
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1610
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1611
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1612
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
1613
+  (0.1ms) rollback transaction
1614
+  (0.1ms) begin transaction
1615
+  (0.1ms) rollback transaction
1616
+  (0.1ms) begin transaction
1617
+  (0.1ms) rollback transaction
1618
+  (0.1ms) begin transaction
1619
+  (0.1ms) rollback transaction
1620
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1621
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1622
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1623
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1624
+  (0.1ms) SELECT version FROM "schema_migrations"
1625
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1626
+  (0.1ms) begin transaction
1627
+  (0.1ms) rollback transaction
1628
+  (0.1ms) begin transaction
1629
+  (0.1ms) rollback transaction
1630
+  (0.1ms) begin transaction
1631
+  (0.1ms) rollback transaction
1632
+  (0.1ms) begin transaction
1633
+  (0.1ms) rollback transaction
1634
+  (0.1ms) begin transaction
1635
+  (0.1ms) rollback transaction
1636
+  (0.1ms) begin transaction
1637
+  (0.1ms) rollback transaction
1638
+  (0.1ms) begin transaction
1639
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1640
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1641
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1642
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (13.5ms)
1643
+ Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.5ms)
1644
+  (0.1ms) rollback transaction
1645
+  (0.1ms) begin transaction
1646
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1647
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1648
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1649
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1650
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
1651
+  (0.1ms) rollback transaction
1652
+  (0.1ms) begin transaction
1653
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1654
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1655
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1656
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1657
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1658
+  (0.1ms) rollback transaction
1659
+  (0.1ms) begin transaction
1660
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1661
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1662
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1663
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1664
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1665
+  (0.1ms) rollback transaction
1666
+  (0.1ms) begin transaction
1667
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1668
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1669
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1670
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1671
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
1672
+  (0.1ms) rollback transaction
1673
+  (0.1ms) begin transaction
1674
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1675
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1676
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1677
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1678
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1679
+  (0.1ms) rollback transaction
1680
+  (0.1ms) begin transaction
1681
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1682
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1683
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1684
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1685
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1686
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1687
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1688
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1689
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1690
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1691
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
1692
+  (0.1ms) rollback transaction
1693
+  (0.1ms) begin transaction
1694
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1695
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1696
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1697
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
1698
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
1699
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:28 +0400
1700
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1701
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1702
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1703
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1704
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1705
+  (0.1ms) rollback transaction
1706
+  (0.1ms) begin transaction
1707
+  (0.1ms) rollback transaction
1708
+  (0.1ms) begin transaction
1709
+  (0.1ms) rollback transaction
1710
+  (0.1ms) begin transaction
1711
+  (0.1ms) rollback transaction
1712
+  (0.0ms) begin transaction
1713
+  (0.1ms) rollback transaction
1714
+  (0.1ms) begin transaction
1715
+  (0.1ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+  (0.1ms) rollback transaction
1718
+  (0.1ms) begin transaction
1719
+  (0.1ms) rollback transaction
1720
+  (0.0ms) begin transaction
1721
+  (0.1ms) rollback transaction
1722
+  (0.1ms) begin transaction
1723
+  (0.1ms) rollback transaction
1724
+  (0.1ms) begin transaction
1725
+  (0.1ms) rollback transaction
1726
+  (0.0ms) begin transaction
1727
+  (0.1ms) rollback transaction
1728
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1729
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1730
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1731
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1732
+  (0.1ms) SELECT version FROM "schema_migrations"
1733
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1734
+  (0.1ms) begin transaction
1735
+  (0.1ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+  (0.1ms) rollback transaction
1738
+  (0.1ms) begin transaction
1739
+  (0.1ms) rollback transaction
1740
+  (0.0ms) begin transaction
1741
+  (0.0ms) rollback transaction
1742
+  (0.0ms) begin transaction
1743
+  (0.0ms) rollback transaction
1744
+  (0.1ms) begin transaction
1745
+  (0.0ms) rollback transaction
1746
+  (0.1ms) begin transaction
1747
+  (0.1ms) rollback transaction
1748
+  (0.1ms) begin transaction
1749
+  (0.1ms) rollback transaction
1750
+  (0.0ms) begin transaction
1751
+  (0.1ms) rollback transaction
1752
+  (0.0ms) begin transaction
1753
+  (0.1ms) rollback transaction
1754
+  (0.1ms) begin transaction
1755
+  (0.1ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+  (0.1ms) rollback transaction
1758
+  (0.1ms) begin transaction
1759
+  (0.1ms) rollback transaction
1760
+  (0.1ms) begin transaction
1761
+  (0.1ms) rollback transaction
1762
+  (0.1ms) begin transaction
1763
+  (0.1ms) rollback transaction
1764
+  (0.1ms) begin transaction
1765
+  (0.0ms) rollback transaction
1766
+  (0.0ms) begin transaction
1767
+  (0.1ms) rollback transaction
1768
+  (0.1ms) begin transaction
1769
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1770
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1771
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1772
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.4ms)
1773
+ Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.5ms)
1774
+  (0.1ms) rollback transaction
1775
+  (0.1ms) begin transaction
1776
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1777
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1778
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1779
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1780
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1781
+  (0.1ms) rollback transaction
1782
+  (0.1ms) begin transaction
1783
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1784
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1785
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1786
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1787
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
1788
+  (0.1ms) rollback transaction
1789
+  (0.1ms) begin transaction
1790
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1791
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1792
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1793
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1794
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1795
+  (0.1ms) rollback transaction
1796
+  (0.1ms) begin transaction
1797
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1798
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1799
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1800
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
1801
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
1802
+  (0.1ms) rollback transaction
1803
+  (0.1ms) begin transaction
1804
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1805
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1806
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1807
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
1808
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1809
+  (0.1ms) rollback transaction
1810
+  (0.1ms) begin transaction
1811
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1812
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1813
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1814
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1815
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1816
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1817
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1818
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1819
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1820
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1821
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1822
+  (0.1ms) rollback transaction
1823
+  (0.1ms) begin transaction
1824
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1825
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1826
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1827
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
1828
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
1829
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:52 +0400
1830
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1831
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1832
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1833
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1834
+ Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.1ms)
1835
+  (0.1ms) rollback transaction
1836
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1837
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1838
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1839
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1840
+  (0.1ms) SELECT version FROM "schema_migrations"
1841
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1842
+  (0.1ms) begin transaction
1843
+  (0.1ms) rollback transaction
1844
+  (0.1ms) begin transaction
1845
+  (0.1ms) rollback transaction
1846
+  (0.1ms) begin transaction
1847
+  (0.1ms) rollback transaction
1848
+  (0.1ms) begin transaction
1849
+  (0.1ms) rollback transaction
1850
+  (0.1ms) begin transaction
1851
+  (0.1ms) rollback transaction
1852
+  (0.1ms) begin transaction
1853
+  (0.0ms) rollback transaction
1854
+  (0.1ms) begin transaction
1855
+  (0.1ms) rollback transaction
1856
+  (0.1ms) begin transaction
1857
+  (0.0ms) rollback transaction
1858
+  (0.0ms) begin transaction
1859
+  (0.0ms) rollback transaction
1860
+  (0.0ms) begin transaction
1861
+  (0.1ms) rollback transaction
1862
+  (0.0ms) begin transaction
1863
+  (0.1ms) rollback transaction
1864
+  (0.1ms) begin transaction
1865
+  (0.1ms) rollback transaction
1866
+  (0.1ms) begin transaction
1867
+  (0.1ms) rollback transaction
1868
+  (0.1ms) begin transaction
1869
+  (0.1ms) rollback transaction
1870
+  (0.1ms) begin transaction
1871
+  (0.1ms) rollback transaction
1872
+  (0.1ms) begin transaction
1873
+  (0.1ms) rollback transaction
1874
+  (0.1ms) begin transaction
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1878
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1879
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1880
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.4ms)
1881
+ Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.5ms)
1882
+  (0.1ms) rollback transaction
1883
+  (0.1ms) begin transaction
1884
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1885
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1886
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1887
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1888
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1889
+  (0.1ms) rollback transaction
1890
+  (0.1ms) begin transaction
1891
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1892
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1893
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1894
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
1895
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1896
+  (0.1ms) rollback transaction
1897
+  (0.1ms) begin transaction
1898
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1899
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1900
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1901
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1902
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
1903
+  (0.1ms) rollback transaction
1904
+  (0.1ms) begin transaction
1905
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1906
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1907
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1908
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
1909
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
1910
+  (0.1ms) rollback transaction
1911
+  (0.1ms) begin transaction
1912
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1913
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1914
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1915
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1916
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
1917
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1918
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1919
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1920
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1921
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.1ms)
1922
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)
1923
+  (0.1ms) rollback transaction
1924
+  (0.1ms) begin transaction
1925
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1926
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1927
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1928
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
1929
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1930
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1931
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1932
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1933
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1934
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1935
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
1936
+  (0.1ms) rollback transaction
1937
+  (0.1ms) begin transaction
1938
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:01:59 +0400
1939
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1940
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1941
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
1942
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
1943
+  (0.1ms) rollback transaction
1944
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
1945
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
1946
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1947
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1948
+  (0.1ms) SELECT version FROM "schema_migrations"
1949
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
1950
+  (0.1ms) begin transaction
1951
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1952
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1953
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1954
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (13.9ms)
1955
+ Completed 200 OK in 33ms (Views: 29.2ms | ActiveRecord: 0.4ms)
1956
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1957
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1958
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1959
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1960
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1961
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms)
1962
+  (0.1ms) rollback transaction
1963
+  (0.1ms) begin transaction
1964
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1965
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1966
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1967
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
1968
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
1969
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1970
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
1971
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
1972
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1973
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
1974
+ Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.1ms)
1975
+  (0.1ms) rollback transaction
1976
+  (0.1ms) begin transaction
1977
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1978
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1979
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1980
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
1981
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
1982
+  (0.1ms) rollback transaction
1983
+  (0.1ms) begin transaction
1984
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1985
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1986
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1987
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
1988
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
1989
+  (0.1ms) rollback transaction
1990
+  (0.1ms) begin transaction
1991
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1992
+ Processing by RailsSettingsUi::SettingsController#index as HTML
1993
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
1994
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
1995
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
1996
+  (0.1ms) rollback transaction
1997
+  (0.1ms) begin transaction
1998
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
1999
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2000
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2001
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2002
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
2003
+  (0.1ms) rollback transaction
2004
+  (0.1ms) begin transaction
2005
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
2006
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2007
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2008
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
2009
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2010
+  (0.1ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:11 +0400
2013
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2014
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2015
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2016
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2017
+  (0.1ms) rollback transaction
2018
+  (0.1ms) begin transaction
2019
+  (0.1ms) rollback transaction
2020
+  (0.1ms) begin transaction
2021
+  (0.1ms) rollback transaction
2022
+  (0.1ms) begin transaction
2023
+  (0.1ms) rollback transaction
2024
+  (0.1ms) begin transaction
2025
+  (0.1ms) rollback transaction
2026
+  (0.1ms) begin transaction
2027
+  (0.0ms) rollback transaction
2028
+  (0.0ms) begin transaction
2029
+  (0.1ms) rollback transaction
2030
+  (0.1ms) begin transaction
2031
+  (0.1ms) rollback transaction
2032
+  (0.0ms) begin transaction
2033
+  (0.1ms) rollback transaction
2034
+  (0.1ms) begin transaction
2035
+  (0.1ms) rollback transaction
2036
+  (0.1ms) begin transaction
2037
+  (0.1ms) rollback transaction
2038
+  (0.1ms) begin transaction
2039
+  (0.1ms) rollback transaction
2040
+  (0.1ms) begin transaction
2041
+  (0.1ms) rollback transaction
2042
+  (0.1ms) begin transaction
2043
+  (0.1ms) rollback transaction
2044
+  (0.1ms) begin transaction
2045
+  (0.1ms) rollback transaction
2046
+  (0.1ms) begin transaction
2047
+  (0.1ms) rollback transaction
2048
+  (0.1ms) begin transaction
2049
+  (0.1ms) rollback transaction
2050
+  (0.1ms) begin transaction
2051
+  (0.1ms) rollback transaction
2052
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2053
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2054
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2055
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2056
+  (0.1ms) SELECT version FROM "schema_migrations"
2057
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2058
+  (0.1ms) begin transaction
2059
+  (0.1ms) rollback transaction
2060
+  (0.1ms) begin transaction
2061
+  (0.1ms) rollback transaction
2062
+  (0.1ms) begin transaction
2063
+  (0.1ms) rollback transaction
2064
+  (0.0ms) begin transaction
2065
+  (0.1ms) rollback transaction
2066
+  (0.0ms) begin transaction
2067
+  (0.1ms) rollback transaction
2068
+  (0.0ms) begin transaction
2069
+  (0.1ms) rollback transaction
2070
+  (0.0ms) begin transaction
2071
+  (0.1ms) rollback transaction
2072
+  (0.0ms) begin transaction
2073
+  (0.1ms) rollback transaction
2074
+  (0.0ms) begin transaction
2075
+  (0.1ms) rollback transaction
2076
+  (0.1ms) begin transaction
2077
+  (0.1ms) rollback transaction
2078
+  (0.1ms) begin transaction
2079
+  (0.1ms) rollback transaction
2080
+  (0.1ms) begin transaction
2081
+  (0.1ms) rollback transaction
2082
+  (0.0ms) begin transaction
2083
+  (0.1ms) rollback transaction
2084
+  (0.0ms) begin transaction
2085
+  (0.0ms) rollback transaction
2086
+  (0.0ms) begin transaction
2087
+  (0.0ms) rollback transaction
2088
+  (0.1ms) begin transaction
2089
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2090
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2091
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2092
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.9ms)
2093
+ Completed 200 OK in 28ms (Views: 25.2ms | ActiveRecord: 0.4ms)
2094
+  (0.1ms) rollback transaction
2095
+  (0.1ms) begin transaction
2096
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2097
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2098
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2099
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2100
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2101
+  (0.1ms) rollback transaction
2102
+  (0.1ms) begin transaction
2103
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2104
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2105
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2106
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2107
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2108
+  (0.1ms) rollback transaction
2109
+  (0.1ms) begin transaction
2110
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2111
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2112
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2113
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2114
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
2115
+  (0.1ms) rollback transaction
2116
+  (0.1ms) begin transaction
2117
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2118
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2119
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2120
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
2121
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2122
+  (0.1ms) rollback transaction
2123
+  (0.1ms) begin transaction
2124
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2125
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2126
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2127
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2128
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
2129
+  (0.1ms) rollback transaction
2130
+  (0.1ms) begin transaction
2131
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2132
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2133
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2134
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2135
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
2136
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2137
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2138
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2139
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2140
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.9ms)
2141
+ Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.1ms)
2142
+  (0.1ms) rollback transaction
2143
+  (0.1ms) begin transaction
2144
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2145
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2146
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2147
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2148
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
2149
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:18 +0400
2150
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2151
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"foo", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2152
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2153
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
2154
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
2155
+  (0.1ms) rollback transaction
2156
+  (0.1ms) begin transaction
2157
+  (0.1ms) rollback transaction
2158
+  (0.1ms) begin transaction
2159
+  (0.1ms) rollback transaction
2160
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2161
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2162
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2163
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2164
+  (0.1ms) SELECT version FROM "schema_migrations"
2165
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2166
+  (0.1ms) begin transaction
2167
+  (0.1ms) rollback transaction
2168
+  (0.1ms) begin transaction
2169
+  (0.1ms) rollback transaction
2170
+  (0.1ms) begin transaction
2171
+  (0.1ms) rollback transaction
2172
+  (0.1ms) begin transaction
2173
+  (0.1ms) rollback transaction
2174
+  (0.1ms) begin transaction
2175
+  (0.1ms) rollback transaction
2176
+  (0.0ms) begin transaction
2177
+  (0.1ms) rollback transaction
2178
+  (0.0ms) begin transaction
2179
+  (0.1ms) rollback transaction
2180
+  (0.0ms) begin transaction
2181
+  (0.1ms) rollback transaction
2182
+  (0.0ms) begin transaction
2183
+  (0.1ms) rollback transaction
2184
+  (0.0ms) begin transaction
2185
+  (0.0ms) rollback transaction
2186
+  (0.0ms) begin transaction
2187
+  (0.1ms) rollback transaction
2188
+  (0.0ms) begin transaction
2189
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2190
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2191
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2192
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.8ms)
2193
+ Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.4ms)
2194
+  (0.1ms) rollback transaction
2195
+  (0.1ms) begin transaction
2196
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2197
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2198
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2199
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2200
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2201
+  (0.1ms) rollback transaction
2202
+  (0.1ms) begin transaction
2203
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2204
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2205
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2206
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2207
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2208
+  (0.1ms) rollback transaction
2209
+  (0.1ms) begin transaction
2210
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2211
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2212
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2213
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2214
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2215
+  (0.1ms) rollback transaction
2216
+  (0.1ms) begin transaction
2217
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2218
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2219
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2220
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2221
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2222
+  (0.1ms) rollback transaction
2223
+  (0.1ms) begin transaction
2224
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2225
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2226
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2227
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
2228
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
2229
+  (0.1ms) rollback transaction
2230
+  (0.1ms) begin transaction
2231
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2232
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2233
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2234
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2235
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2236
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2237
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2238
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2239
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2240
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
2241
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
2242
+  (0.1ms) rollback transaction
2243
+  (0.1ms) begin transaction
2244
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2245
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2246
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2247
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.2ms)
2248
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.2ms)
2249
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:25 +0400
2250
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2251
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2252
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2253
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.9ms)
2254
+ Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.2ms)
2255
+  (0.1ms) rollback transaction
2256
+  (0.1ms) begin transaction
2257
+  (0.1ms) rollback transaction
2258
+  (0.2ms) begin transaction
2259
+  (0.1ms) rollback transaction
2260
+  (0.1ms) begin transaction
2261
+  (0.1ms) rollback transaction
2262
+  (0.1ms) begin transaction
2263
+  (0.1ms) rollback transaction
2264
+  (0.1ms) begin transaction
2265
+  (0.1ms) rollback transaction
2266
+  (0.1ms) begin transaction
2267
+  (0.1ms) rollback transaction
2268
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2269
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2270
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2271
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2272
+  (0.1ms) SELECT version FROM "schema_migrations"
2273
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2274
+  (0.1ms) begin transaction
2275
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2276
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2277
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2278
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.0ms)
2279
+ Completed 200 OK in 32ms (Views: 28.9ms | ActiveRecord: 0.4ms)
2280
+  (0.1ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2283
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2284
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2285
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2286
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.2ms)
2287
+  (0.1ms) rollback transaction
2288
+  (0.1ms) begin transaction
2289
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2290
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2291
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2292
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2293
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2294
+  (0.1ms) rollback transaction
2295
+  (0.1ms) begin transaction
2296
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2297
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2298
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2299
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2300
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2301
+  (0.1ms) rollback transaction
2302
+  (0.1ms) begin transaction
2303
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2304
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2305
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2306
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
2307
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2308
+  (0.1ms) rollback transaction
2309
+  (0.1ms) begin transaction
2310
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2311
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2312
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2313
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2314
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2315
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2316
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2317
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2318
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2319
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.0ms)
2320
+ Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.1ms)
2321
+  (0.1ms) rollback transaction
2322
+  (0.1ms) begin transaction
2323
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2324
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2325
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2326
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2327
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2328
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2329
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2330
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2331
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2332
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2333
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.1ms)
2334
+  (0.1ms) rollback transaction
2335
+  (0.1ms) begin transaction
2336
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:33 +0400
2337
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2338
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2339
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.4ms)
2340
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
2341
+  (0.1ms) rollback transaction
2342
+  (0.1ms) begin transaction
2343
+  (0.1ms) rollback transaction
2344
+  (0.1ms) begin transaction
2345
+  (0.1ms) rollback transaction
2346
+  (0.1ms) begin transaction
2347
+  (0.1ms) rollback transaction
2348
+  (0.1ms) begin transaction
2349
+  (0.1ms) rollback transaction
2350
+  (0.1ms) begin transaction
2351
+  (0.1ms) rollback transaction
2352
+  (0.1ms) begin transaction
2353
+  (0.1ms) rollback transaction
2354
+  (0.1ms) begin transaction
2355
+  (0.1ms) rollback transaction
2356
+  (0.1ms) begin transaction
2357
+  (0.1ms) rollback transaction
2358
+  (0.1ms) begin transaction
2359
+  (0.1ms) rollback transaction
2360
+  (0.1ms) begin transaction
2361
+  (0.1ms) rollback transaction
2362
+  (0.1ms) begin transaction
2363
+  (0.1ms) rollback transaction
2364
+  (0.1ms) begin transaction
2365
+  (0.1ms) rollback transaction
2366
+  (0.1ms) begin transaction
2367
+  (0.1ms) rollback transaction
2368
+  (0.1ms) begin transaction
2369
+  (0.1ms) rollback transaction
2370
+  (0.1ms) begin transaction
2371
+  (0.1ms) rollback transaction
2372
+  (0.1ms) begin transaction
2373
+  (0.1ms) rollback transaction
2374
+  (0.1ms) begin transaction
2375
+  (0.1ms) rollback transaction
2376
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2377
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2378
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2379
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2380
+  (0.1ms) SELECT version FROM "schema_migrations"
2381
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2382
+  (0.1ms) begin transaction
2383
+  (0.1ms) rollback transaction
2384
+  (0.1ms) begin transaction
2385
+  (0.1ms) rollback transaction
2386
+  (0.1ms) begin transaction
2387
+  (0.1ms) rollback transaction
2388
+  (0.1ms) begin transaction
2389
+  (0.1ms) rollback transaction
2390
+  (0.1ms) begin transaction
2391
+  (0.1ms) rollback transaction
2392
+  (0.1ms) begin transaction
2393
+  (0.1ms) rollback transaction
2394
+  (0.1ms) begin transaction
2395
+  (0.1ms) rollback transaction
2396
+  (0.1ms) begin transaction
2397
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2398
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2399
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2400
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.5ms)
2401
+ Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.5ms)
2402
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2403
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2404
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"100", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2405
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2406
+ Completed 500 Internal Server Error in 1ms
2407
+  (0.1ms) rollback transaction
2408
+  (0.1ms) begin transaction
2409
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2410
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2411
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2412
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2413
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2414
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2415
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2416
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2417
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2418
+ Completed 500 Internal Server Error in 1ms
2419
+  (0.1ms) rollback transaction
2420
+  (0.1ms) begin transaction
2421
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2422
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2423
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2424
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2425
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2426
+  (0.1ms) rollback transaction
2427
+  (0.1ms) begin transaction
2428
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2429
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2430
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2431
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2432
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2433
+  (0.1ms) rollback transaction
2434
+  (0.1ms) begin transaction
2435
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2436
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2437
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2438
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2439
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
2440
+  (0.1ms) rollback transaction
2441
+  (0.1ms) begin transaction
2442
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2443
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2444
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2445
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
2446
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
2447
+  (0.1ms) rollback transaction
2448
+  (0.1ms) begin transaction
2449
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2450
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2451
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2452
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2453
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
2454
+  (0.1ms) rollback transaction
2455
+  (0.1ms) begin transaction
2456
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:02:40 +0400
2457
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2458
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2459
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2460
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
2461
+  (0.1ms) rollback transaction
2462
+  (0.1ms) begin transaction
2463
+  (0.1ms) rollback transaction
2464
+  (0.0ms) begin transaction
2465
+  (0.1ms) rollback transaction
2466
+  (0.0ms) begin transaction
2467
+  (0.1ms) rollback transaction
2468
+  (0.1ms) begin transaction
2469
+  (0.1ms) rollback transaction
2470
+  (0.1ms) begin transaction
2471
+  (0.1ms) rollback transaction
2472
+  (0.0ms) begin transaction
2473
+  (0.1ms) rollback transaction
2474
+  (0.0ms) begin transaction
2475
+  (0.1ms) rollback transaction
2476
+  (0.1ms) begin transaction
2477
+  (0.1ms) rollback transaction
2478
+  (0.0ms) begin transaction
2479
+  (0.0ms) rollback transaction
2480
+  (0.0ms) begin transaction
2481
+  (0.1ms) rollback transaction
2482
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2483
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2484
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2485
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2486
+  (0.1ms) SELECT version FROM "schema_migrations"
2487
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2488
+  (0.1ms) begin transaction
2489
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2490
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2491
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2492
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (13.8ms)
2493
+ Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.4ms)
2494
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2495
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2496
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2497
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2498
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
2499
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.2ms)
2500
+  (0.1ms) rollback transaction
2501
+  (0.1ms) begin transaction
2502
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2503
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2504
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2505
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
2506
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
2507
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2508
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2509
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2510
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2511
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2512
+ Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.1ms)
2513
+  (0.1ms) rollback transaction
2514
+  (0.1ms) begin transaction
2515
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2516
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2517
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2518
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2519
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
2520
+  (0.1ms) rollback transaction
2521
+  (0.1ms) begin transaction
2522
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2523
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2524
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2525
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2526
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
2527
+  (0.1ms) rollback transaction
2528
+  (0.1ms) begin transaction
2529
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2530
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2531
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2532
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2533
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2534
+  (0.1ms) rollback transaction
2535
+  (0.1ms) begin transaction
2536
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2537
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2538
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2539
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2540
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2541
+  (0.1ms) rollback transaction
2542
+  (0.1ms) begin transaction
2543
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2544
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2545
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2546
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2547
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
2548
+  (0.1ms) rollback transaction
2549
+  (0.1ms) begin transaction
2550
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:48 +0400
2551
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2552
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2553
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2554
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2555
+  (0.1ms) rollback transaction
2556
+  (0.1ms) begin transaction
2557
+  (0.1ms) rollback transaction
2558
+  (0.1ms) begin transaction
2559
+  (0.1ms) rollback transaction
2560
+  (0.1ms) begin transaction
2561
+  (0.1ms) rollback transaction
2562
+  (0.1ms) begin transaction
2563
+  (0.1ms) rollback transaction
2564
+  (0.0ms) begin transaction
2565
+  (0.1ms) rollback transaction
2566
+  (0.0ms) begin transaction
2567
+  (0.1ms) rollback transaction
2568
+  (0.1ms) begin transaction
2569
+  (0.1ms) rollback transaction
2570
+  (0.0ms) begin transaction
2571
+  (0.1ms) rollback transaction
2572
+  (0.0ms) begin transaction
2573
+  (0.1ms) rollback transaction
2574
+  (0.1ms) begin transaction
2575
+  (0.1ms) rollback transaction
2576
+  (0.0ms) begin transaction
2577
+  (0.1ms) rollback transaction
2578
+  (0.1ms) begin transaction
2579
+  (0.1ms) rollback transaction
2580
+  (0.1ms) begin transaction
2581
+  (0.1ms) rollback transaction
2582
+  (0.0ms) begin transaction
2583
+  (0.1ms) rollback transaction
2584
+  (0.1ms) begin transaction
2585
+  (0.0ms) rollback transaction
2586
+  (0.1ms) begin transaction
2587
+  (0.1ms) rollback transaction
2588
+  (0.0ms) begin transaction
2589
+  (0.1ms) rollback transaction
2590
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2591
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2592
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2593
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2594
+  (0.1ms) SELECT version FROM "schema_migrations"
2595
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2596
+  (0.1ms) begin transaction
2597
+  (0.1ms) rollback transaction
2598
+  (0.1ms) begin transaction
2599
+  (0.1ms) rollback transaction
2600
+  (0.1ms) begin transaction
2601
+  (0.1ms) rollback transaction
2602
+  (0.1ms) begin transaction
2603
+  (0.1ms) rollback transaction
2604
+  (0.1ms) begin transaction
2605
+  (0.1ms) rollback transaction
2606
+  (0.1ms) begin transaction
2607
+  (0.1ms) rollback transaction
2608
+  (0.1ms) begin transaction
2609
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2610
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2611
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2612
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.3ms)
2613
+ Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.5ms)
2614
+  (0.1ms) rollback transaction
2615
+  (0.1ms) begin transaction
2616
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2617
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2618
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2619
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2620
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2621
+  (0.1ms) rollback transaction
2622
+  (0.1ms) begin transaction
2623
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2624
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2625
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2626
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
2627
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
2628
+  (0.2ms) rollback transaction
2629
+  (0.1ms) begin transaction
2630
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2631
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2632
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2633
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.4ms)
2634
+ Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.2ms)
2635
+  (0.1ms) rollback transaction
2636
+  (0.1ms) begin transaction
2637
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2638
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2639
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2640
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2641
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
2642
+  (0.1ms) rollback transaction
2643
+  (0.1ms) begin transaction
2644
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:53 +0400
2645
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2646
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2647
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2648
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
2649
+  (0.1ms) rollback transaction
2650
+  (0.1ms) begin transaction
2651
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:54 +0400
2652
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2653
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2654
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.5ms)
2655
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms)
2656
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:04:54 +0400
2657
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2658
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2659
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2660
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.7ms)
2661
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.1ms)
2662
+  (0.2ms) rollback transaction
2663
+  (0.1ms) begin transaction
2664
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:04:54 +0400
2665
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2666
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2667
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.5ms)
2668
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
2669
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:04:54 +0400
2670
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2671
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2672
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2673
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.3ms)
2674
+ Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
2675
+  (0.1ms) rollback transaction
2676
+  (0.1ms) begin transaction
2677
+  (0.1ms) rollback transaction
2678
+  (0.1ms) begin transaction
2679
+  (0.1ms) rollback transaction
2680
+  (0.1ms) begin transaction
2681
+  (0.1ms) rollback transaction
2682
+  (0.1ms) begin transaction
2683
+  (0.1ms) rollback transaction
2684
+  (0.1ms) begin transaction
2685
+  (0.1ms) rollback transaction
2686
+  (0.1ms) begin transaction
2687
+  (0.1ms) rollback transaction
2688
+  (0.1ms) begin transaction
2689
+  (0.1ms) rollback transaction
2690
+  (0.1ms) begin transaction
2691
+  (0.1ms) rollback transaction
2692
+  (0.1ms) begin transaction
2693
+  (0.1ms) rollback transaction
2694
+  (0.1ms) begin transaction
2695
+  (0.1ms) rollback transaction
2696
+  (0.1ms) begin transaction
2697
+  (0.1ms) rollback transaction
2698
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2699
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2700
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2701
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2702
+  (0.1ms) SELECT version FROM "schema_migrations"
2703
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2704
+  (0.1ms) begin transaction
2705
+  (0.1ms) rollback transaction
2706
+  (0.1ms) begin transaction
2707
+  (0.1ms) rollback transaction
2708
+  (0.1ms) begin transaction
2709
+  (0.1ms) rollback transaction
2710
+  (0.1ms) begin transaction
2711
+  (0.1ms) rollback transaction
2712
+  (0.1ms) begin transaction
2713
+  (0.1ms) rollback transaction
2714
+  (0.1ms) begin transaction
2715
+  (0.1ms) rollback transaction
2716
+  (0.0ms) begin transaction
2717
+  (0.1ms) rollback transaction
2718
+  (0.0ms) begin transaction
2719
+  (0.1ms) rollback transaction
2720
+  (0.1ms) begin transaction
2721
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:06 +0400
2722
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2723
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2724
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.1ms)
2725
+ Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.4ms)
2726
+  (0.1ms) rollback transaction
2727
+  (0.1ms) begin transaction
2728
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2729
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2730
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2731
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2732
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2733
+  (0.1ms) rollback transaction
2734
+  (0.1ms) begin transaction
2735
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2736
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2737
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2738
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2739
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2740
+  (0.1ms) rollback transaction
2741
+  (0.1ms) begin transaction
2742
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2743
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2744
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2745
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2746
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2747
+  (0.1ms) rollback transaction
2748
+  (0.1ms) begin transaction
2749
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2750
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2751
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2752
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
2753
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2754
+  (0.1ms) rollback transaction
2755
+  (0.1ms) begin transaction
2756
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2757
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2758
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2759
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2760
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
2761
+  (0.1ms) rollback transaction
2762
+  (0.1ms) begin transaction
2763
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2764
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2765
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2766
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2767
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
2768
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2769
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2770
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2771
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2772
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2773
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
2774
+  (0.1ms) rollback transaction
2775
+  (0.1ms) begin transaction
2776
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2777
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2778
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2779
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
2780
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
2781
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:07 +0400
2782
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2783
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2784
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2785
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
2786
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
2787
+  (0.1ms) rollback transaction
2788
+  (0.1ms) begin transaction
2789
+  (0.1ms) rollback transaction
2790
+  (0.1ms) begin transaction
2791
+  (0.0ms) rollback transaction
2792
+  (0.1ms) begin transaction
2793
+  (0.1ms) rollback transaction
2794
+  (0.1ms) begin transaction
2795
+  (0.1ms) rollback transaction
2796
+  (0.1ms) begin transaction
2797
+  (0.1ms) rollback transaction
2798
+  (0.1ms) begin transaction
2799
+  (0.1ms) rollback transaction
2800
+  (0.1ms) begin transaction
2801
+  (0.1ms) rollback transaction
2802
+  (0.1ms) begin transaction
2803
+  (0.0ms) rollback transaction
2804
+  (0.0ms) begin transaction
2805
+  (0.1ms) rollback transaction
2806
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2807
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2808
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2809
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2810
+  (0.1ms) SELECT version FROM "schema_migrations"
2811
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2812
+  (0.1ms) begin transaction
2813
+  (0.1ms) rollback transaction
2814
+  (0.1ms) begin transaction
2815
+  (0.1ms) rollback transaction
2816
+  (0.1ms) begin transaction
2817
+  (0.1ms) rollback transaction
2818
+  (0.1ms) begin transaction
2819
+  (0.1ms) rollback transaction
2820
+  (0.1ms) begin transaction
2821
+  (0.0ms) rollback transaction
2822
+  (0.0ms) begin transaction
2823
+  (0.1ms) rollback transaction
2824
+  (0.1ms) begin transaction
2825
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2826
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2827
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2828
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.2ms)
2829
+ Completed 200 OK in 27ms (Views: 24.3ms | ActiveRecord: 0.5ms)
2830
+  (0.1ms) rollback transaction
2831
+  (0.1ms) begin transaction
2832
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2833
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2834
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2835
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2836
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2837
+  (0.1ms) rollback transaction
2838
+  (0.1ms) begin transaction
2839
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2840
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2841
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2842
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2843
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2844
+  (0.1ms) rollback transaction
2845
+  (0.1ms) begin transaction
2846
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2847
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2848
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2849
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2850
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2851
+  (0.1ms) rollback transaction
2852
+  (0.1ms) begin transaction
2853
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2854
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2855
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2856
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
2857
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
2858
+  (0.1ms) rollback transaction
2859
+  (0.1ms) begin transaction
2860
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2861
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2862
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2863
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2864
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
2865
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:11 +0400
2866
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2867
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2868
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2869
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
2870
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
2871
+  (0.1ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:12 +0400
2874
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2875
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2876
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
2877
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2878
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:12 +0400
2879
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
2880
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
2881
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2882
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
2883
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
2884
+  (0.1ms) rollback transaction
2885
+  (0.1ms) begin transaction
2886
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:12 +0400
2887
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2888
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2889
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
2890
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
2891
+  (0.1ms) rollback transaction
2892
+  (0.1ms) begin transaction
2893
+  (0.1ms) rollback transaction
2894
+  (0.1ms) begin transaction
2895
+  (0.1ms) rollback transaction
2896
+  (0.1ms) begin transaction
2897
+  (0.1ms) rollback transaction
2898
+  (0.0ms) begin transaction
2899
+  (0.1ms) rollback transaction
2900
+  (0.1ms) begin transaction
2901
+  (0.1ms) rollback transaction
2902
+  (0.1ms) begin transaction
2903
+  (0.1ms) rollback transaction
2904
+  (0.1ms) begin transaction
2905
+  (0.1ms) rollback transaction
2906
+  (0.0ms) begin transaction
2907
+  (0.1ms) rollback transaction
2908
+  (0.0ms) begin transaction
2909
+  (0.1ms) rollback transaction
2910
+  (0.0ms) begin transaction
2911
+  (0.1ms) rollback transaction
2912
+  (0.1ms) begin transaction
2913
+  (0.1ms) rollback transaction
2914
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
2915
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
2916
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2917
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2918
+  (0.1ms) SELECT version FROM "schema_migrations"
2919
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
2920
+  (0.1ms) begin transaction
2921
+  (0.1ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+  (0.1ms) rollback transaction
2924
+  (0.1ms) begin transaction
2925
+  (0.1ms) rollback transaction
2926
+  (0.1ms) begin transaction
2927
+  (0.1ms) rollback transaction
2928
+  (0.0ms) begin transaction
2929
+  (0.0ms) rollback transaction
2930
+  (0.0ms) begin transaction
2931
+  (0.0ms) rollback transaction
2932
+  (0.0ms) begin transaction
2933
+  (0.1ms) rollback transaction
2934
+  (0.0ms) begin transaction
2935
+  (0.1ms) rollback transaction
2936
+  (0.0ms) begin transaction
2937
+  (0.1ms) rollback transaction
2938
+  (0.0ms) begin transaction
2939
+  (0.1ms) rollback transaction
2940
+  (0.1ms) begin transaction
2941
+  (0.1ms) rollback transaction
2942
+  (0.0ms) begin transaction
2943
+  (0.0ms) rollback transaction
2944
+  (0.0ms) begin transaction
2945
+  (0.1ms) rollback transaction
2946
+  (0.1ms) begin transaction
2947
+  (0.1ms) rollback transaction
2948
+  (0.1ms) begin transaction
2949
+  (0.1ms) rollback transaction
2950
+  (0.1ms) begin transaction
2951
+  (0.1ms) rollback transaction
2952
+  (0.1ms) begin transaction
2953
+  (0.1ms) rollback transaction
2954
+  (0.1ms) begin transaction
2955
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2956
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2957
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2958
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.7ms)
2959
+ Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.4ms)
2960
+  (0.1ms) rollback transaction
2961
+  (0.1ms) begin transaction
2962
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2963
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2964
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2965
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2966
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2967
+  (0.1ms) rollback transaction
2968
+  (0.1ms) begin transaction
2969
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2970
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2971
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2972
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2973
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
2974
+  (0.1ms) rollback transaction
2975
+  (0.1ms) begin transaction
2976
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2977
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2978
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2979
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2980
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2981
+  (0.1ms) rollback transaction
2982
+  (0.1ms) begin transaction
2983
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2984
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2985
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2986
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
2987
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
2988
+  (0.1ms) rollback transaction
2989
+  (0.1ms) begin transaction
2990
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2991
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2992
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
2993
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
2994
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2995
+  (0.1ms) rollback transaction
2996
+  (0.1ms) begin transaction
2997
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
2998
+ Processing by RailsSettingsUi::SettingsController#index as HTML
2999
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3000
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
3001
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
3002
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
3003
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3004
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3005
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3006
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
3007
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
3008
+  (0.1ms) rollback transaction
3009
+  (0.1ms) begin transaction
3010
+ Started GET "/settings" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
3011
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3012
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3013
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
3014
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms)
3015
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-07 23:05:16 +0400
3016
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3017
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3018
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3019
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
3020
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
3021
+  (0.1ms) rollback transaction
3022
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
3023
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
3024
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3025
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3026
+  (0.1ms) SELECT version FROM "schema_migrations"
3027
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
3028
+  (0.1ms) begin transaction
3029
+  (0.1ms) rollback transaction
3030
+  (0.1ms) begin transaction
3031
+  (0.1ms) rollback transaction
3032
+  (0.1ms) begin transaction
3033
+  (0.1ms) rollback transaction
3034
+  (0.1ms) begin transaction
3035
+  (0.1ms) rollback transaction
3036
+  (0.1ms) begin transaction
3037
+  (0.1ms) rollback transaction
3038
+  (0.1ms) begin transaction
3039
+  (0.1ms) rollback transaction
3040
+  (0.1ms) begin transaction
3041
+  (0.1ms) rollback transaction
3042
+  (0.1ms) begin transaction
3043
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3044
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3045
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3046
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.7ms)
3047
+ Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.5ms)
3048
+  (0.1ms) rollback transaction
3049
+  (0.1ms) begin transaction
3050
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3051
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3052
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3053
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
3054
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
3055
+  (0.1ms) rollback transaction
3056
+  (0.1ms) begin transaction
3057
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3058
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3059
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3060
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
3061
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
3062
+  (0.1ms) rollback transaction
3063
+  (0.1ms) begin transaction
3064
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3065
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3066
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3067
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
3068
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
3069
+  (0.1ms) rollback transaction
3070
+  (0.1ms) begin transaction
3071
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3072
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3073
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3074
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
3075
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
3076
+  (0.1ms) rollback transaction
3077
+  (0.1ms) begin transaction
3078
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3079
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3080
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3081
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
3082
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3083
+  (0.1ms) rollback transaction
3084
+  (0.1ms) begin transaction
3085
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3086
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3087
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3088
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
3089
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
3090
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3091
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3092
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3093
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3094
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
3095
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.2ms)
3096
+  (0.1ms) rollback transaction
3097
+  (0.1ms) begin transaction
3098
+ Started GET "/settings" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3099
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3100
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3101
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
3102
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
3103
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-10 10:20:57 +0400
3104
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3105
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3106
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3107
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
3108
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
3109
+  (0.1ms) rollback transaction
3110
+  (0.1ms) begin transaction
3111
+  (0.1ms) rollback transaction
3112
+  (0.1ms) begin transaction
3113
+  (0.1ms) rollback transaction
3114
+  (0.0ms) begin transaction
3115
+  (0.1ms) rollback transaction
3116
+  (0.1ms) begin transaction
3117
+  (0.1ms) rollback transaction
3118
+  (0.0ms) begin transaction
3119
+  (0.1ms) rollback transaction
3120
+  (0.1ms) begin transaction
3121
+  (0.1ms) rollback transaction
3122
+  (0.1ms) begin transaction
3123
+  (0.1ms) rollback transaction
3124
+  (0.1ms) begin transaction
3125
+  (0.1ms) rollback transaction
3126
+  (0.1ms) begin transaction
3127
+  (0.1ms) rollback transaction
3128
+  (0.1ms) begin transaction
3129
+  (0.1ms) rollback transaction
3130
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) 
3131
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
3132
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3133
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3134
+  (0.1ms) SELECT version FROM "schema_migrations"
3135
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
3136
+  (0.1ms) begin transaction
3137
+  (0.1ms) rollback transaction
3138
+  (0.1ms) begin transaction
3139
+  (0.1ms) rollback transaction
3140
+  (0.1ms) begin transaction
3141
+  (0.1ms) rollback transaction
3142
+  (0.1ms) begin transaction
3143
+  (0.1ms) rollback transaction
3144
+  (0.1ms) begin transaction
3145
+  (0.1ms) rollback transaction
3146
+  (0.1ms) begin transaction
3147
+  (0.1ms) rollback transaction
3148
+  (0.1ms) begin transaction
3149
+  (0.1ms) rollback transaction
3150
+  (0.1ms) begin transaction
3151
+  (0.1ms) rollback transaction
3152
+  (0.1ms) begin transaction
3153
+  (0.1ms) rollback transaction
3154
+  (0.1ms) begin transaction
3155
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3156
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3157
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3158
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.3ms)
3159
+ Completed 200 OK in 60ms (Views: 57.4ms | ActiveRecord: 0.5ms)
3160
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3161
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3162
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3163
+ Settings Load (0.3ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3164
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
3165
+ Completed 200 OK in 8ms (Views: 5.1ms | ActiveRecord: 0.3ms)
3166
+  (0.1ms) rollback transaction
3167
+  (0.1ms) begin transaction
3168
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3169
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3170
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3171
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
3172
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
3173
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3174
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
3175
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
3176
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3177
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
3178
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
3179
+  (0.1ms) rollback transaction
3180
+  (0.1ms) begin transaction
3181
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3182
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3183
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3184
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
3185
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
3186
+  (0.1ms) rollback transaction
3187
+  (0.1ms) begin transaction
3188
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3189
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3190
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3191
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
3192
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
3193
+  (0.1ms) rollback transaction
3194
+  (0.1ms) begin transaction
3195
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3196
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3197
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3198
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
3199
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
3200
+  (0.1ms) rollback transaction
3201
+  (0.1ms) begin transaction
3202
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3203
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3204
+ Settings Load (0.1ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3205
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
3206
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
3207
+  (0.1ms) rollback transaction
3208
+  (0.1ms) begin transaction
3209
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3210
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3211
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3212
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (6.3ms)
3213
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms)
3214
+  (0.1ms) rollback transaction
3215
+  (0.1ms) begin transaction
3216
+ Started GET "/settings" for 127.0.0.1 at 2014-04-24 20:29:54 +0400
3217
+ Processing by RailsSettingsUi::SettingsController#index as HTML
3218
+ Settings Load (0.2ms) SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
3219
+ Rendered /home/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.6ms)
3220
+ Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.2ms)
3221
+  (0.1ms) rollback transaction
3222
+  (0.1ms) begin transaction
3223
+  (0.1ms) rollback transaction
3224
+  (0.1ms) begin transaction
3225
+  (0.1ms) rollback transaction
3226
+  (0.1ms) begin transaction
3227
+  (0.1ms) rollback transaction
3228
+  (0.1ms) begin transaction
3229
+  (0.1ms) rollback transaction
3230
+  (0.1ms) begin transaction
3231
+  (0.1ms) rollback transaction
3232
+  (0.1ms) begin transaction
3233
+  (0.1ms) rollback transaction
3234
+  (0.1ms) begin transaction
3235
+  (0.1ms) rollback transaction
3236
+  (0.1ms) begin transaction
3237
+  (0.1ms) rollback transaction