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.
- checksums.yaml +4 -4
- data/Gemfile +2 -0
- data/Rakefile +11 -10
- data/app/assets/stylesheets/rails_settings_ui/application.css.scss +2 -2
- data/app/controllers/rails_settings_ui/settings_controller.rb +1 -1
- data/app/helpers/rails_settings_ui/settings_helper.rb +32 -63
- data/lib/rails-settings-ui.rb +1 -1
- data/lib/rails-settings-ui/engine.rb +7 -0
- data/lib/rails-settings-ui/type_converter.rb +58 -0
- data/lib/rails-settings-ui/value_types/array.rb +17 -0
- data/lib/rails-settings-ui/value_types/base.rb +30 -0
- data/lib/rails-settings-ui/value_types/boolean.rb +11 -0
- data/lib/rails-settings-ui/value_types/fixnum.rb +17 -0
- data/lib/rails-settings-ui/value_types/float.rb +17 -0
- data/lib/rails-settings-ui/value_types/hash.rb +19 -0
- data/lib/rails-settings-ui/value_types/string.rb +11 -0
- data/lib/rails-settings-ui/value_types/symbol.rb +11 -0
- data/lib/rails-settings-ui/version.rb +1 -1
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/settings.rb +16 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +24 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/db/migrate/20140320182332_create_settings.rb +17 -0
- data/spec/dummy/db/schema.rb +27 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +264 -0
- data/spec/dummy/log/test.log +3237 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/capybara/capybara-201403251000145108838835.html +68 -0
- data/spec/dummy/tmp/capybara/capybara-201403251029034025293240.html +95 -0
- data/spec/features/settings_spec.rb +63 -0
- data/spec/lib/rails-settings-ui/type_converter_spec.rb +33 -0
- data/spec/lib/rails-settings-ui/value_types/array_spec.rb +15 -0
- data/spec/lib/rails-settings-ui/value_types/base_spec.rb +23 -0
- data/spec/lib/rails-settings-ui/value_types/boolean_spec.rb +10 -0
- data/spec/lib/rails-settings-ui/value_types/fixnum_spec.rb +17 -0
- data/spec/lib/rails-settings-ui/value_types/float_spec.rb +17 -0
- data/spec/lib/rails-settings-ui/value_types/hash_spec.rb +26 -0
- data/spec/lib/rails-settings-ui/value_types/string_spec.rb +10 -0
- data/spec/lib/rails-settings-ui/value_types/symbol_spec.rb +10 -0
- data/spec/spec_helper.rb +27 -0
- 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
|
+
[1m[36m (1.0ms)[0m [1mCREATE 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) [0m
|
2
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
3
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
4
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
7
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
8
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
9
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
10
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
11
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
12
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
13
|
+
[1m[36m (5.5ms)[0m [1mCREATE 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) [0m
|
14
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
15
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
16
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
17
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
18
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
19
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
20
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
21
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
22
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
23
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
24
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
25
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
26
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
27
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
28
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
29
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
30
|
+
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
31
|
+
[1m[36m (1.1ms)[0m [1mCREATE 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) [0m
|
32
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
33
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
34
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
35
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
36
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
37
|
+
[1m[36m (5.2ms)[0m [1mCREATE 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) [0m
|
38
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
39
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
40
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
41
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
42
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
43
|
+
[1m[36m (5.2ms)[0m [1mCREATE 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) [0m
|
44
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
45
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
46
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
47
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
48
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
49
|
+
[1m[36m (5.5ms)[0m [1mCREATE 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) [0m
|
50
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
51
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
52
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
53
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
54
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
55
|
+
[1m[36m (2.4ms)[0m [1mCREATE 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) [0m
|
56
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
57
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
58
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
59
|
+
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
60
|
+
[1m[35m (1.0ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
61
|
+
[1m[36m (5.8ms)[0m [1mCREATE 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) [0m
|
62
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
63
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
64
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
65
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
66
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
67
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
68
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
69
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
70
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
71
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
72
|
+
[1m[35m (0.7ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
73
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
74
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
75
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
76
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
77
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
78
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
79
|
+
[1m[36m (5.2ms)[0m [1mCREATE 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) [0m
|
80
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
81
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
82
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
83
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
84
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
85
|
+
[1m[36m (1.0ms)[0m [1mCREATE 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) [0m
|
86
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
87
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
88
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
89
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
90
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
91
|
+
[1m[36m (1.0ms)[0m [1mCREATE 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) [0m
|
92
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
93
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
94
|
+
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
95
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
96
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
97
|
+
[1m[36m (5.1ms)[0m [1mCREATE 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) [0m
|
98
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
99
|
+
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
100
|
+
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
101
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
102
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
103
|
+
[1m[36m (5.1ms)[0m [1mCREATE 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) [0m
|
104
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
105
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
106
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
107
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
108
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
109
|
+
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
110
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
111
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
112
|
+
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
113
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
114
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
115
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
116
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
117
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
118
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
119
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
120
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
121
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
122
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
123
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
124
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
125
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
126
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
127
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
128
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
129
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
130
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
131
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
132
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
133
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
134
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
135
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
136
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
137
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
138
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
139
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
140
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
141
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
142
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
143
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
144
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
145
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
146
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
147
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
148
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
149
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
150
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
151
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
152
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
153
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
154
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
155
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
156
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
157
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
158
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
159
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
160
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
161
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
162
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
163
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
164
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
165
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
166
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
167
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
168
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
169
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
170
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
171
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
172
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
173
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
174
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
175
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
176
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
177
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
178
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
179
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
180
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
181
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
182
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
183
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
184
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
185
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
186
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
187
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
188
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
189
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
190
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
191
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
192
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
193
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
194
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
195
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
196
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
197
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
198
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
199
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
200
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
201
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
202
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
203
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
204
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
205
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
206
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
207
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
208
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
209
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
210
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
211
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
212
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
213
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
214
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
215
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
216
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
217
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
218
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
219
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
220
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
221
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
222
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
223
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
224
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
225
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
226
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
227
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
228
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
229
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
230
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
231
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
232
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
233
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
234
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
235
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
236
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
237
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
238
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
239
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
240
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
241
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
242
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
243
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
244
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
245
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
246
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
247
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
248
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
249
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
250
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
251
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
252
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
253
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
254
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
255
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
256
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
257
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
258
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
259
|
+
[1m[36m (11.4ms)[0m [1mCREATE 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) [0m
|
260
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
261
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
262
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
263
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
264
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
@@ -0,0 +1,3237 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
8
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
15
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
22
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
29
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
43
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
57
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
64
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
78
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
85
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
92
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
99
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
106
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
113
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
120
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
127
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
141
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
148
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
155
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
162
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
169
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
183
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
190
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
197
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
204
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
211
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
218
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
232
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
246
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
253
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
267
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
281
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
288
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
295
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
302
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
309
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
316
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
323
|
+
[1m[36m (0.7ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
330
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
337
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
344
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
351
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
358
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
371
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
378
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
385
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
392
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
399
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
406
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
413
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.3ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
426
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
433
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
440
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
454
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
461
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
468
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
481
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
488
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
495
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
502
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
509
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
516
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
523
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
536
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
549
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
556
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
557
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
558
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
559
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
560
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
561
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
562
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
563
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
564
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
566
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
567
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
569
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
570
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
571
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
572
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
573
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
574
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
576
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
577
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
578
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
579
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
580
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
581
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
583
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
584
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
585
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
587
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
588
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
598
|
+
Completed 500 Internal Server Error in 1ms
|
599
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
610
|
+
Completed 500 Internal Server Error in 1ms
|
611
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
612
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
619
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
633
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
647
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
654
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
655
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
656
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
657
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
658
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
659
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
660
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
661
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
662
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
663
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
664
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
667
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
681
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
694
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
701
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
708
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
715
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
722
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
729
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
736
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
737
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
739
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
741
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
743
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
745
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
746
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
747
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
748
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
749
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
751
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
752
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
753
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
754
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
755
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
757
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
759
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
761
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
763
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
764
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
765
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
766
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
767
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
768
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
769
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
770
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
771
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
772
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
773
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
774
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
775
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
776
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
777
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
778
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
779
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
780
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
781
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
784
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
785
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
786
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
787
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
788
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
789
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
797
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
804
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
811
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
818
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
825
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
832
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
845
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
859
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
860
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
861
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
862
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
863
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
864
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
865
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
867
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
868
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
869
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
870
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
871
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
872
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
873
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
874
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
875
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
877
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
878
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
879
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
887
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
894
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
901
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
908
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
915
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
935
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
949
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
950
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
951
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
952
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
953
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
954
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
955
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
956
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
957
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
958
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
959
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
960
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
961
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
962
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
963
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
964
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
965
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
966
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
967
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
969
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
970
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
971
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
972
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
973
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
974
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
975
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
976
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
977
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
978
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
979
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
980
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
981
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
983
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
985
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
986
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
987
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
988
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
989
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
990
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
991
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
992
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
993
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
994
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
995
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
996
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
997
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
998
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
999
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1000
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1001
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1002
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1003
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
1014
|
+
Completed 500 Internal Server Error in 1ms
|
1015
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1016
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
1026
|
+
Completed 500 Internal Server Error in 1ms
|
1027
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1028
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1035
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1049
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1056
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
1063
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1070
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1071
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1073
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1077
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1078
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1079
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1081
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1082
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1083
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1084
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1085
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1086
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1087
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1089
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1090
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1093
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1095
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1096
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1097
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1098
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1099
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1100
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1103
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1106
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1107
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1109
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1111
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1113
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1114
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1116
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1119
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1121
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1129
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1143
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1157
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1164
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1177
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1190
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1191
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1192
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1193
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1194
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1195
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1197
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1198
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1199
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1200
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1201
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1203
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1204
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1205
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1206
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1207
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1211
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1212
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1219
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1233
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1240
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1247
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1254
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1267
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1281
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1282
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1285
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1286
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1287
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1289
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1290
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1291
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1294
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1295
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1297
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1298
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1299
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1300
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1301
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1302
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1303
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1317
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1337
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1344
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1351
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1365
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1372
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1373
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1375
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1376
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1377
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1379
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1381
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1383
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1385
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1386
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1387
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1389
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1391
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1392
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1393
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1394
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1395
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1397
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1398
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1399
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1400
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1401
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1402
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1403
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1404
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1405
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1406
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1407
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1408
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1409
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1410
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1411
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1412
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1413
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1414
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1415
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1416
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1417
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1418
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1425
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1438
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1451
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1458
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1465
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1472
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1479
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1487
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1489
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1490
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1493
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1494
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1495
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1497
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1498
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1499
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1501
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1502
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1503
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1505
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1507
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1509
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1510
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1511
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1512
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1513
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1514
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1515
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1516
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1517
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1518
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1519
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1520
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1521
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1522
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1523
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1524
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1525
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1527
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1528
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1529
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1530
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1531
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1532
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1533
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1534
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1535
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1536
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1537
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1538
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1539
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1540
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1541
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1543
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1544
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1545
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1546
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1547
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1548
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1555
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
1565
|
+
Completed 500 Internal Server Error in 1ms
|
1566
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1567
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
1577
|
+
Completed 500 Internal Server Error in 1ms
|
1578
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1579
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1593
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1607
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1615
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1617
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1618
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1619
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1620
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1621
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1622
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1623
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1624
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1625
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1626
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1627
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1628
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1629
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1630
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1633
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1635
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1636
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1637
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1645
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1652
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1659
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1673
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1680
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1693
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1707
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1708
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1709
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1711
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1713
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1714
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1717
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1718
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1719
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1720
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1721
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1722
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1723
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1724
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1725
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1727
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1728
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1729
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1730
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1731
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1732
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1733
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1734
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1735
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1736
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1737
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1738
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1739
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1740
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1741
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1745
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1746
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1747
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1748
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1749
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1751
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1752
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1753
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1754
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1755
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1757
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1758
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1759
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1760
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1761
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1763
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1764
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1765
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1767
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1768
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1775
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1789
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1803
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1810
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1823
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1836
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1837
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1838
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1839
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1840
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1841
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1842
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1843
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1844
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1845
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1847
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1848
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1849
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1850
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1851
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1853
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1854
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1855
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1856
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1857
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1858
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1859
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1860
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1861
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1862
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1863
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1864
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1865
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1866
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1867
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1868
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1869
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1870
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1871
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1873
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1874
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1875
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1876
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1883
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1890
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1897
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1911
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1924
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1937
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1944
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
1945
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
1946
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1947
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1948
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1949
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
1950
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1963
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1976
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1983
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1990
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1997
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2011
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2018
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2019
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2021
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2022
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2023
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2024
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2026
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2027
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2029
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2032
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2033
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2035
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2036
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2037
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2039
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2041
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2043
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2044
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2045
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2046
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2047
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2048
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2049
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2050
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2051
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2052
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2053
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2054
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2055
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2056
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2057
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2058
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2059
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2060
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2061
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2062
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2063
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2064
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2065
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2067
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2068
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2069
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2070
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2071
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2072
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2073
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2077
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2078
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2079
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2080
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2081
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2082
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2083
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2084
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2085
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2086
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2087
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2095
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2109
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2123
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2130
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2143
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2156
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2159
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2160
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2161
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2162
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2163
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2164
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2165
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2167
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2168
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2169
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2171
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2173
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2175
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2176
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2177
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2178
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2180
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2181
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2182
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2186
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2187
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2195
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2209
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2216
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2223
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2230
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2243
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2257
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2258
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2259
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2260
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2262
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2263
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2264
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2265
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2266
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2267
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2268
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2269
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2270
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2271
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2272
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2273
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2274
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2281
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2295
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2309
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2322
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2335
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2342
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2343
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2344
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2345
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2346
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2347
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2348
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2349
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2350
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2352
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2353
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2354
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2355
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2357
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2359
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2360
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2361
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2362
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2363
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2364
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2365
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2367
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2368
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2369
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2370
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2371
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2372
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2373
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2374
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2375
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2376
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2377
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2378
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2379
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2380
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2381
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2382
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2383
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2385
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2386
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2387
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2388
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2389
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2391
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2392
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2393
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2394
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2395
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
2406
|
+
Completed 500 Internal Server Error in 1ms
|
2407
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2408
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
2418
|
+
Completed 500 Internal Server Error in 1ms
|
2419
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2420
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2427
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2434
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2441
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2455
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2462
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2463
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2464
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2465
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2466
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2467
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2468
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2469
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2471
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2472
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2473
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2475
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2476
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2477
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2479
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2480
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2481
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2482
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2483
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2484
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2485
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2486
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2487
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2488
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2501
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2521
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2528
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2535
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2542
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2549
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2556
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2557
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2558
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2559
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2561
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2562
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2563
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2564
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2565
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2567
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2569
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2571
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2572
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2573
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2574
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2575
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2577
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2578
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2579
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2580
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2581
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2582
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2583
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2584
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2585
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2586
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2587
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2588
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2589
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2590
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2591
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2592
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2593
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2594
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2595
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2596
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2597
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2598
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2599
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2601
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2602
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2604
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2605
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2606
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2607
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2608
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2615
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2629
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2636
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2643
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2650
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
2663
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2676
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2678
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2679
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2680
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2681
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2682
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2683
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2684
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2685
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2686
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2687
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2688
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2689
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2690
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2691
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2692
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2693
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2694
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2695
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2696
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2697
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2698
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2699
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2700
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2701
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2702
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2703
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2704
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2705
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2707
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2708
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2709
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2710
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2711
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2712
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2713
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2714
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2715
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2716
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2717
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2718
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2719
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2720
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2727
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2734
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2741
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2748
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2755
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2762
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2775
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2788
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2789
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2791
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2792
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2793
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2794
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2795
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2797
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2798
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2799
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2800
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2801
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2803
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2804
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2805
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2806
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2807
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2808
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2809
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2810
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2811
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2812
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2813
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2815
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2818
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2819
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2820
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2821
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2822
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2823
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2824
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2831
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2838
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2845
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2859
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2872
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2885
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2892
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2893
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2894
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2895
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2896
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2897
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2898
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2899
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2900
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2901
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2902
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2903
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2905
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2907
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2908
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2909
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2910
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2911
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2912
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2913
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2914
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
2915
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
2916
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2917
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
2918
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
2919
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
2920
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2921
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2923
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2924
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2925
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2926
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2927
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2928
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2929
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2930
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2931
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2932
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2933
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2934
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2935
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2936
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2937
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2939
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2940
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2941
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2942
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2943
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2945
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2946
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2947
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2948
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2949
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2950
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2951
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2952
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2953
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2954
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2961
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2975
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2989
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2996
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3009
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3022
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
3023
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
3024
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3025
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3026
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3027
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
3028
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3029
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3032
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3033
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3034
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3035
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3036
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3037
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3039
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3040
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3041
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3049
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3056
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3063
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3070
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3077
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3084
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3097
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3111
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3113
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3114
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3115
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3116
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3119
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3120
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3121
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3123
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3124
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3129
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3130
|
+
[1m[36m (0.4ms)[0m [1mCREATE 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) [0m
|
3131
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
3132
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
3133
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3134
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
3135
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
3136
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3137
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3141
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3143
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3144
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3145
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3146
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3147
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3148
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3149
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3151
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3153
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3154
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.3ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3187
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3201
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35mSettings Load (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3215
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3223
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3224
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3225
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3226
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3227
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3229
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3230
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3231
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3232
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3233
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3234
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3235
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3237
|
+
[1m[35m (0.1ms)[0m rollback transaction
|