rails-settings-ui 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47102084ac53afd10e81cd504e838a1909c9ab78
4
- data.tar.gz: 218cfa6bdb3037d2b1cb422f3cdf059e1988c2fb
3
+ metadata.gz: 552459e48b85e76a46cbce5b4f71375b99827f13
4
+ data.tar.gz: bffaa9c3b2c24e29f1d18b8972e2592586c67b79
5
5
  SHA512:
6
- metadata.gz: 945644f268d7c97748aacfafc2b54a57469989fe08e554ef7086aab34e757273b9e40643f75bd5e3751ee181379563cebbf7e46cc9f5cb30abec77e27e326dbf
7
- data.tar.gz: 1134a02d20833981c67b191c6f03510a5fd8f528704d8e31046ac61137cd76d5f4d691dbfe22aaa70c2af779ad16bdb8840701f980eb699b8e1def254fcfbbc4
6
+ metadata.gz: 227bf908fc2541c545a2ed939f4d8b63a9507cca76dcfe72cdf2397de9a9c946c6c50a34c5562aabc9f9d391df3cb6fe2cf4eb98f7d76f83db78f417e0ee0263
7
+ data.tar.gz: 33c0b65835fdc3571b4e27d95ea903f89b9ea141b20ccdbe9ef5c154c76a1b1b069777db7da4dd5300acdeb1e9c8fc5daa358864ab9012e262318db59da94c9a
@@ -45,7 +45,7 @@ module RailsSettingsUi
45
45
  COERCIONS_MAP = {
46
46
  String => Types::Coercible::String,
47
47
  Symbol => Types::CustomCoercions::Symbol,
48
- Fixnum => Types::Form::Int,
48
+ (1.class == Integer ? Integer : Fixnum) => Types::Form::Int,
49
49
  ActiveSupport::HashWithIndifferentAccess => Types::CustomCoercions::Hash,
50
50
  ActiveSupport::Duration => Types::Form::Int,
51
51
  Float => Types::Form::Float,
@@ -20,7 +20,7 @@ module RailsSettingsUi
20
20
 
21
21
  class SettingsFormValidator
22
22
  VALIDATABLE_TYPES = {
23
- Fixnum => :int?,
23
+ (1.class == Integer ? Integer : Fixnum) => :int?,
24
24
  Float => :float?,
25
25
  ActiveSupport::Duration => :int?,
26
26
  ActiveSupport::HashWithIndifferentAccess => :form_hash?
@@ -1,3 +1,3 @@
1
1
  module RailsSettingsUi
2
- VERSION = '1.3.0'
2
+ VERSION = '1.3.1'
3
3
  end
@@ -12,6 +12,7 @@
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
14
  ActiveRecord::Schema.define(version: 20140320182332) do
15
+ self.verbose = false
15
16
 
16
17
  create_table "settings", force: true do |t|
17
18
  t.string "var", null: false
@@ -23,5 +24,4 @@ ActiveRecord::Schema.define(version: 20140320182332) do
23
24
  end
24
25
 
25
26
  add_index "settings", ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true
26
-
27
27
  end
@@ -67697,3 +67697,2496 @@ Processing by RailsSettingsUi::SettingsController#index as HTML
67697
67697
  Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.1ms)
67698
67698
  Completed 200 OK in 72ms (Views: 69.5ms | ActiveRecord: 0.1ms)
67699
67699
   (0.1ms) rollback transaction
67700
+  (0.7ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime)
67701
+  (0.4ms) select sqlite_version(*)
67702
+  (0.1ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
67703
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
67704
+  (0.0ms) SELECT version FROM "schema_migrations"
67705
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES (20140320182332)
67706
+  (0.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
67707
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
67708
+  (0.0ms) begin transaction
67709
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:40:34 UTC], ["updated_at", 2017-03-19 16:40:34 UTC]]
67710
+  (0.0ms) commit transaction
67711
+  (0.1ms) begin transaction
67712
+  (0.1ms) rollback transaction
67713
+  (0.0ms) begin transaction
67714
+  (0.2ms) rollback transaction
67715
+  (0.1ms) begin transaction
67716
+  (0.1ms) rollback transaction
67717
+  (0.0ms) begin transaction
67718
+  (0.0ms) rollback transaction
67719
+  (0.0ms) begin transaction
67720
+  (0.1ms) rollback transaction
67721
+  (0.1ms) begin transaction
67722
+  (0.1ms) rollback transaction
67723
+  (0.1ms) begin transaction
67724
+  (0.0ms) rollback transaction
67725
+  (0.1ms) begin transaction
67726
+  (0.1ms) rollback transaction
67727
+  (0.1ms) begin transaction
67728
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67729
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67730
+ Settings Load (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67731
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67732
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67733
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67734
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (20.4ms)
67735
+ Completed 200 OK in 186ms (Views: 181.0ms | ActiveRecord: 0.3ms)
67736
+  (0.1ms) SAVEPOINT active_record_1
67737
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "company"], ["value", "--- apple\n...\n"], ["created_at", 2017-03-19 16:40:34 UTC], ["updated_at", 2017-03-19 16:40:34 UTC]]
67738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67739
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67740
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67741
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67742
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67743
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67744
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67745
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.1ms)
67746
+ Completed 200 OK in 12ms (Views: 8.1ms | ActiveRecord: 0.1ms)
67747
+  (0.1ms) rollback transaction
67748
+  (0.1ms) begin transaction
67749
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67750
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67751
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67752
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67753
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67754
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67755
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
67756
+ Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
67757
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67758
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
67759
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
67760
+ Settings Load (0.4ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67761
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67762
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67763
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67764
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
67765
+ Completed 200 OK in 17ms (Views: 7.5ms | ActiveRecord: 0.5ms)
67766
+  (0.1ms) rollback transaction
67767
+  (0.1ms) begin transaction
67768
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67769
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67770
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67771
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67772
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67773
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67774
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.7ms)
67775
+ Completed 200 OK in 10ms (Views: 6.8ms | ActiveRecord: 0.1ms)
67776
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:34 +0300
67777
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
67778
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
67779
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67780
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67781
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67782
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67783
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.3ms)
67784
+ Completed 200 OK in 19ms (Views: 10.9ms | ActiveRecord: 0.2ms)
67785
+  (0.1ms) rollback transaction
67786
+  (0.0ms) begin transaction
67787
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67788
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67789
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67790
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67791
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67792
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67793
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (8.6ms)
67794
+ Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.1ms)
67795
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67796
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67797
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67798
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67799
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67800
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67801
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.3ms)
67802
+ Completed 200 OK in 16ms (Views: 11.9ms | ActiveRecord: 0.2ms)
67803
+  (0.1ms) rollback transaction
67804
+  (0.1ms) begin transaction
67805
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67806
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67807
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67808
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67809
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67810
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67811
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (10.8ms)
67812
+ Completed 200 OK in 22ms (Views: 16.1ms | ActiveRecord: 0.2ms)
67813
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67814
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67815
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67816
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67817
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67818
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (8.9ms)
67819
+ Completed 200 OK in 20ms (Views: 13.7ms | ActiveRecord: 0.1ms)
67820
+  (0.1ms) rollback transaction
67821
+  (0.1ms) begin transaction
67822
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67823
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67824
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67825
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67826
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67827
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67828
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.1ms)
67829
+ Completed 200 OK in 26ms (Views: 15.3ms | ActiveRecord: 0.2ms)
67830
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67831
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
67832
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
67833
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67834
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
67835
+  (0.1ms) SAVEPOINT active_record_1
67836
+ SQL (0.3ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
67838
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
67839
+  (0.1ms) SAVEPOINT active_record_1
67840
+ SQL (0.3ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67841
+  (0.1ms) RELEASE SAVEPOINT active_record_1
67842
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
67843
+  (0.1ms) SAVEPOINT active_record_1
67844
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67845
+  (0.1ms) RELEASE SAVEPOINT active_record_1
67846
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
67847
+  (0.0ms) SAVEPOINT active_record_1
67848
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67850
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
67851
+  (0.1ms) SAVEPOINT active_record_1
67852
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67854
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
67855
+  (0.0ms) SAVEPOINT active_record_1
67856
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67858
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
67859
+  (0.0ms) SAVEPOINT active_record_1
67860
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67862
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
67863
+  (0.0ms) SAVEPOINT active_record_1
67864
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67865
+  (0.1ms) RELEASE SAVEPOINT active_record_1
67866
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
67867
+  (0.0ms) SAVEPOINT active_record_1
67868
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67869
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67870
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
67871
+  (0.0ms) SAVEPOINT active_record_1
67872
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67873
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67874
+ Redirected to http://www.example.com/settings/
67875
+ Completed 302 Found in 82ms (ActiveRecord: 4.0ms)
67876
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67877
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67878
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67879
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67880
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67881
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67882
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.0ms)
67883
+ Completed 200 OK in 15ms (Views: 10.7ms | ActiveRecord: 0.1ms)
67884
+  (0.1ms) rollback transaction
67885
+  (0.1ms) begin transaction
67886
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67887
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67888
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67889
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67890
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67891
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67892
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.3ms)
67893
+ Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.1ms)
67894
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67895
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
67896
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"55.4", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
67897
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67898
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
67899
+  (0.0ms) SAVEPOINT active_record_1
67900
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67902
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
67903
+  (0.1ms) SAVEPOINT active_record_1
67904
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67905
+  (0.1ms) RELEASE SAVEPOINT active_record_1
67906
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
67907
+  (0.0ms) SAVEPOINT active_record_1
67908
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 55.4\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67909
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67910
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
67911
+  (0.0ms) SAVEPOINT active_record_1
67912
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67914
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
67915
+  (0.0ms) SAVEPOINT active_record_1
67916
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67918
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
67919
+  (0.0ms) SAVEPOINT active_record_1
67920
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67922
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
67923
+  (0.0ms) SAVEPOINT active_record_1
67924
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67926
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
67927
+  (0.1ms) SAVEPOINT active_record_1
67928
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67930
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
67931
+  (0.0ms) SAVEPOINT active_record_1
67932
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67934
+ Settings Load (0.5ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
67935
+  (0.0ms) SAVEPOINT active_record_1
67936
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67938
+ Redirected to http://www.example.com/settings/
67939
+ Completed 302 Found in 70ms (ActiveRecord: 3.7ms)
67940
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67941
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67942
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67943
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67944
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67945
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67946
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.3ms)
67947
+ Completed 200 OK in 14ms (Views: 10.8ms | ActiveRecord: 0.1ms)
67948
+  (0.1ms) rollback transaction
67949
+  (0.0ms) begin transaction
67950
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67951
+ Processing by RailsSettingsUi::SettingsController#index as HTML
67952
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67953
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
67954
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67955
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67956
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.9ms)
67957
+ Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.1ms)
67958
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
67959
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
67960
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "style"=>"{\"border_color\":\"e0e0e0\",\"block_color\":\"000000\"}", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
67961
+ Settings Load (0.3ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
67962
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
67963
+  (0.0ms) SAVEPOINT active_record_1
67964
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67965
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67966
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
67967
+  (0.0ms) SAVEPOINT active_record_1
67968
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67969
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67970
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
67971
+  (0.0ms) SAVEPOINT active_record_1
67972
+ SQL (0.3ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67973
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67974
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
67975
+  (0.1ms) SAVEPOINT active_record_1
67976
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: '000000'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67978
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
67979
+  (0.0ms) SAVEPOINT active_record_1
67980
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67981
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67982
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
67983
+  (0.0ms) SAVEPOINT active_record_1
67984
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67986
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
67987
+  (0.0ms) SAVEPOINT active_record_1
67988
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67990
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
67991
+  (0.0ms) SAVEPOINT active_record_1
67992
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67994
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
67995
+  (0.0ms) SAVEPOINT active_record_1
67996
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
67997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
67998
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
67999
+  (0.0ms) SAVEPOINT active_record_1
68000
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68002
+ Redirected to http://www.example.com/settings/
68003
+ Completed 302 Found in 67ms (ActiveRecord: 3.6ms)
68004
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68005
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68006
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68007
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68008
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68009
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68010
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (8.7ms)
68011
+ Completed 200 OK in 18ms (Views: 12.5ms | ActiveRecord: 0.1ms)
68012
+  (0.1ms) rollback transaction
68013
+  (0.1ms) begin transaction
68014
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68015
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68016
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68017
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68018
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68019
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68020
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.2ms)
68021
+ Completed 200 OK in 16ms (Views: 12.5ms | ActiveRecord: 0.2ms)
68022
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68023
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68024
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"552", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68025
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68026
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68027
+  (0.0ms) SAVEPOINT active_record_1
68028
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68030
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68031
+  (0.0ms) SAVEPOINT active_record_1
68032
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 552\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68034
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68035
+  (0.0ms) SAVEPOINT active_record_1
68036
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68038
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68039
+  (0.1ms) SAVEPOINT active_record_1
68040
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68042
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68043
+  (0.0ms) SAVEPOINT active_record_1
68044
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68046
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68047
+  (0.0ms) SAVEPOINT active_record_1
68048
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68050
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68051
+  (0.0ms) SAVEPOINT active_record_1
68052
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68054
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68055
+  (0.0ms) SAVEPOINT active_record_1
68056
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68058
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68059
+  (0.0ms) SAVEPOINT active_record_1
68060
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68062
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68063
+  (0.0ms) SAVEPOINT active_record_1
68064
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68065
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68066
+ Redirected to http://www.example.com/settings/
68067
+ Completed 302 Found in 55ms (ActiveRecord: 3.0ms)
68068
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68069
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68070
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68071
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68072
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68073
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68074
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.7ms)
68075
+ Completed 200 OK in 16ms (Views: 11.3ms | ActiveRecord: 0.2ms)
68076
+  (0.1ms) rollback transaction
68077
+  (0.2ms) begin transaction
68078
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68079
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68080
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68081
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68082
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68083
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68084
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.4ms)
68085
+ Completed 200 OK in 12ms (Views: 8.9ms | ActiveRecord: 0.1ms)
68086
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68087
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68088
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"new", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68089
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68090
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68091
+  (0.0ms) SAVEPOINT active_record_1
68092
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68093
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68094
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68095
+  (0.0ms) SAVEPOINT active_record_1
68096
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68098
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68099
+  (0.0ms) SAVEPOINT active_record_1
68100
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68102
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68103
+  (0.1ms) SAVEPOINT active_record_1
68104
+ SQL (0.4ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68106
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68107
+  (0.0ms) SAVEPOINT active_record_1
68108
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68109
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68110
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68111
+  (0.0ms) SAVEPOINT active_record_1
68112
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68113
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68114
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68115
+  (0.1ms) SAVEPOINT active_record_1
68116
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68117
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68118
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68119
+  (0.0ms) SAVEPOINT active_record_1
68120
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68122
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68123
+  (0.0ms) SAVEPOINT active_record_1
68124
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :new\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68126
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68127
+  (0.0ms) SAVEPOINT active_record_1
68128
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68130
+ Redirected to http://www.example.com/settings/
68131
+ Completed 302 Found in 57ms (ActiveRecord: 3.3ms)
68132
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68133
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68134
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68135
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68136
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68137
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68138
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.2ms)
68139
+ Completed 200 OK in 13ms (Views: 9.5ms | ActiveRecord: 0.1ms)
68140
+  (0.1ms) rollback transaction
68141
+  (0.0ms) begin transaction
68142
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68143
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68144
+ Settings Load (0.3ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68145
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68146
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68147
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68148
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
68149
+ Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.3ms)
68150
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68151
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68152
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"=>{"manual"=>"on"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68153
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68154
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68155
+  (0.0ms) SAVEPOINT active_record_1
68156
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68158
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68159
+  (0.0ms) SAVEPOINT active_record_1
68160
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68162
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68163
+  (0.1ms) SAVEPOINT active_record_1
68164
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68166
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68167
+  (0.1ms) SAVEPOINT active_record_1
68168
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68169
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68170
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68171
+  (0.1ms) SAVEPOINT active_record_1
68172
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68174
+ Settings Load (0.5ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68175
+  (0.2ms) SAVEPOINT active_record_1
68176
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68177
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68178
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68179
+  (0.0ms) SAVEPOINT active_record_1
68180
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :manual\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68182
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68183
+  (0.1ms) SAVEPOINT active_record_1
68184
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68186
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68187
+  (0.1ms) SAVEPOINT active_record_1
68188
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68190
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68191
+  (0.0ms) SAVEPOINT active_record_1
68192
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68194
+ Redirected to http://www.example.com/settings/
68195
+ Completed 302 Found in 52ms (ActiveRecord: 3.6ms)
68196
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68197
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68198
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68199
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68200
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68201
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68202
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.2ms)
68203
+ Completed 200 OK in 11ms (Views: 7.9ms | ActiveRecord: 0.1ms)
68204
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68205
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68206
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
68207
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68208
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68209
+  (0.0ms) SAVEPOINT active_record_1
68210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68211
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68212
+  (0.0ms) SAVEPOINT active_record_1
68213
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68214
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68215
+  (0.0ms) SAVEPOINT active_record_1
68216
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68217
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68218
+  (0.0ms) SAVEPOINT active_record_1
68219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68220
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68221
+  (0.0ms) SAVEPOINT active_record_1
68222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68223
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68224
+  (0.0ms) SAVEPOINT active_record_1
68225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68226
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68227
+  (0.0ms) SAVEPOINT active_record_1
68228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68229
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68230
+  (0.0ms) SAVEPOINT active_record_1
68231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68232
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68233
+  (0.0ms) SAVEPOINT active_record_1
68234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68235
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68236
+  (0.0ms) SAVEPOINT active_record_1
68237
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- []\n"], ["updated_at", 2017-03-19 16:40:35 UTC], ["id", 7]]
68238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68239
+ Redirected to http://www.example.com/settings/
68240
+ Completed 302 Found in 38ms (ActiveRecord: 1.9ms)
68241
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68242
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68243
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68244
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68245
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68246
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68247
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.9ms)
68248
+ Completed 200 OK in 14ms (Views: 10.0ms | ActiveRecord: 0.1ms)
68249
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68250
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68251
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>{"auto"=>"on", "manual"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
68252
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68253
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68254
+  (0.0ms) SAVEPOINT active_record_1
68255
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68256
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68257
+  (0.0ms) SAVEPOINT active_record_1
68258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68259
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68260
+  (0.0ms) SAVEPOINT active_record_1
68261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68262
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68263
+  (0.0ms) SAVEPOINT active_record_1
68264
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68265
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68266
+  (0.0ms) SAVEPOINT active_record_1
68267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68268
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68269
+  (0.1ms) SAVEPOINT active_record_1
68270
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:40:35 UTC], ["id", 7]]
68271
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68272
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68273
+  (0.1ms) SAVEPOINT active_record_1
68274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68275
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68276
+  (0.1ms) SAVEPOINT active_record_1
68277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68278
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68279
+  (0.1ms) SAVEPOINT active_record_1
68280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68281
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68282
+  (0.0ms) SAVEPOINT active_record_1
68283
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68284
+ Redirected to http://www.example.com/settings/
68285
+ Completed 302 Found in 49ms (ActiveRecord: 2.9ms)
68286
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68287
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68288
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68289
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68290
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68291
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68292
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.2ms)
68293
+ Completed 200 OK in 14ms (Views: 10.3ms | ActiveRecord: 0.1ms)
68294
+  (0.1ms) rollback transaction
68295
+  (0.1ms) begin transaction
68296
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68297
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68298
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68299
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68300
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68301
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68302
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.0ms)
68303
+ Completed 200 OK in 11ms (Views: 8.0ms | ActiveRecord: 0.1ms)
68304
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68305
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68306
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68307
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68308
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68309
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
68310
+ Completed 200 OK in 10ms (Views: 6.2ms | ActiveRecord: 0.1ms)
68311
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:35 +0300
68312
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68313
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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", "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68314
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68315
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68316
+  (0.0ms) SAVEPOINT active_record_1
68317
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:40:35 UTC], ["updated_at", 2017-03-19 16:40:35 UTC]]
68318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68319
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68320
+  (0.1ms) SAVEPOINT active_record_1
68321
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68322
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68323
+ Settings Load (0.7ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68324
+  (0.1ms) SAVEPOINT active_record_1
68325
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68326
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68327
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68328
+  (0.1ms) SAVEPOINT active_record_1
68329
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68330
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68331
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68332
+  (0.3ms) SAVEPOINT active_record_1
68333
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68335
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68336
+  (0.1ms) SAVEPOINT active_record_1
68337
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68339
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68340
+  (0.1ms) SAVEPOINT active_record_1
68341
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "--- :auto\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68343
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68344
+  (0.0ms) SAVEPOINT active_record_1
68345
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68347
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68348
+  (0.0ms) SAVEPOINT active_record_1
68349
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68351
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68352
+  (0.0ms) SAVEPOINT active_record_1
68353
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:40:36 UTC], ["updated_at", 2017-03-19 16:40:36 UTC]]
68354
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68355
+ Redirected to http://www.example.com/settings/
68356
+ Completed 302 Found in 68ms (ActiveRecord: 5.0ms)
68357
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68358
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68359
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68360
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68361
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68362
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (48.0ms)
68363
+ Completed 200 OK in 86ms (Views: 65.3ms | ActiveRecord: 0.3ms)
68364
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68365
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68366
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>"manual", "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
68367
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68368
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68369
+  (0.1ms) SAVEPOINT active_record_1
68370
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68371
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68372
+  (0.1ms) SAVEPOINT active_record_1
68373
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68374
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68375
+  (0.1ms) SAVEPOINT active_record_1
68376
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68377
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68378
+  (0.0ms) SAVEPOINT active_record_1
68379
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68380
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68381
+  (0.0ms) SAVEPOINT active_record_1
68382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68383
+ Settings Load (0.5ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68384
+  (0.1ms) SAVEPOINT active_record_1
68385
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:40:36 UTC], ["id", 7]]
68386
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68387
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68388
+  (0.0ms) SAVEPOINT active_record_1
68389
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68390
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68391
+  (0.0ms) SAVEPOINT active_record_1
68392
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68393
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68394
+  (0.0ms) SAVEPOINT active_record_1
68395
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68396
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68397
+  (0.0ms) SAVEPOINT active_record_1
68398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68399
+ Redirected to http://www.example.com/settings/
68400
+ Completed 302 Found in 72ms (ActiveRecord: 3.2ms)
68401
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68402
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68403
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68404
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68405
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68406
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.9ms)
68407
+ Completed 200 OK in 12ms (Views: 7.9ms | ActiveRecord: 0.1ms)
68408
+  (0.1ms) rollback transaction
68409
+  (0.0ms) begin transaction
68410
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68411
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68412
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68413
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68414
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68415
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68416
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.1ms)
68417
+ Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.1ms)
68418
+  (0.0ms) rollback transaction
68419
+  (0.0ms) begin transaction
68420
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68421
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68422
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68423
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68424
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68425
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68426
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.3ms)
68427
+ Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.1ms)
68428
+  (0.0ms) rollback transaction
68429
+  (0.0ms) begin transaction
68430
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68431
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68432
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68433
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68434
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68435
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68436
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.5ms)
68437
+ Completed 200 OK in 9ms (Views: 6.0ms | ActiveRecord: 0.1ms)
68438
+  (0.0ms) rollback transaction
68439
+  (0.1ms) begin transaction
68440
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68441
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68442
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68443
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68444
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68445
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68446
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
68447
+ Completed 200 OK in 9ms (Views: 5.8ms | ActiveRecord: 0.1ms)
68448
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68449
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68450
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68451
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68452
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68453
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
68454
+ Completed 200 OK in 9ms (Views: 6.2ms | ActiveRecord: 0.1ms)
68455
+  (0.1ms) rollback transaction
68456
+  (0.0ms) begin transaction
68457
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68458
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68459
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68460
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68461
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68462
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68463
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
68464
+ Completed 200 OK in 9ms (Views: 6.2ms | ActiveRecord: 0.1ms)
68465
+  (0.0ms) rollback transaction
68466
+  (0.1ms) begin transaction
68467
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68468
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68469
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68470
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68471
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68472
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68473
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.1ms)
68474
+ Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.1ms)
68475
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68476
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68477
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68478
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68479
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68480
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.5ms)
68481
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.1ms)
68482
+  (0.1ms) rollback transaction
68483
+  (0.0ms) begin transaction
68484
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68485
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68486
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68487
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
68488
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68489
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68490
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin (3.5ms)
68491
+ Completed 200 OK in 10ms (Views: 6.6ms | ActiveRecord: 0.1ms)
68492
+  (0.1ms) rollback transaction
68493
+  (0.0ms) begin transaction
68494
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:40:36 +0300
68495
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68496
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68497
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68498
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68499
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68500
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
68501
+ Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.1ms)
68502
+  (0.1ms) rollback transaction
68503
+  (0.0ms) begin transaction
68504
+  (0.0ms) rollback transaction
68505
+  (0.0ms) begin transaction
68506
+  (0.0ms) rollback transaction
68507
+  (0.0ms) begin transaction
68508
+  (0.1ms) rollback transaction
68509
+  (0.1ms) begin transaction
68510
+  (0.1ms) rollback transaction
68511
+  (0.1ms) begin transaction
68512
+  (0.0ms) rollback transaction
68513
+  (0.0ms) begin transaction
68514
+  (0.1ms) rollback transaction
68515
+  (0.0ms) begin transaction
68516
+  (0.0ms) rollback transaction
68517
+  (0.0ms) begin transaction
68518
+  (0.0ms) rollback transaction
68519
+  (0.1ms) begin transaction
68520
+  (0.0ms) rollback transaction
68521
+  (0.1ms) begin transaction
68522
+  (0.0ms) rollback transaction
68523
+  (0.0ms) begin transaction
68524
+  (0.1ms) rollback transaction
68525
+  (0.0ms) begin transaction
68526
+  (0.0ms) rollback transaction
68527
+  (0.0ms) begin transaction
68528
+  (0.1ms) rollback transaction
68529
+  (0.0ms) begin transaction
68530
+  (0.0ms) rollback transaction
68531
+  (0.4ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime)
68532
+  (0.1ms) select sqlite_version(*)
68533
+  (0.2ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
68534
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
68535
+  (0.0ms) SELECT version FROM "schema_migrations"
68536
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES (20140320182332)
68537
+  (0.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
68538
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
68539
+  (0.1ms) begin transaction
68540
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68541
+  (0.0ms) commit transaction
68542
+  (0.2ms) begin transaction
68543
+  (0.1ms) rollback transaction
68544
+  (0.0ms) begin transaction
68545
+  (0.1ms) rollback transaction
68546
+  (0.0ms) begin transaction
68547
+  (0.1ms) rollback transaction
68548
+  (0.1ms) begin transaction
68549
+  (0.1ms) rollback transaction
68550
+  (0.1ms) begin transaction
68551
+  (0.1ms) rollback transaction
68552
+  (0.0ms) begin transaction
68553
+  (0.1ms) rollback transaction
68554
+  (0.1ms) begin transaction
68555
+  (0.0ms) rollback transaction
68556
+  (0.1ms) begin transaction
68557
+  (0.1ms) rollback transaction
68558
+  (0.1ms) begin transaction
68559
+  (0.0ms) rollback transaction
68560
+  (0.1ms) begin transaction
68561
+  (0.1ms) rollback transaction
68562
+  (0.1ms) begin transaction
68563
+  (0.0ms) rollback transaction
68564
+  (0.0ms) begin transaction
68565
+  (0.0ms) rollback transaction
68566
+  (0.0ms) begin transaction
68567
+  (0.0ms) rollback transaction
68568
+  (0.1ms) begin transaction
68569
+  (0.0ms) rollback transaction
68570
+  (0.0ms) begin transaction
68571
+  (0.0ms) rollback transaction
68572
+  (0.0ms) begin transaction
68573
+  (0.0ms) rollback transaction
68574
+  (0.0ms) begin transaction
68575
+  (0.1ms) rollback transaction
68576
+  (0.1ms) begin transaction
68577
+  (0.1ms) rollback transaction
68578
+  (0.0ms) begin transaction
68579
+  (0.1ms) rollback transaction
68580
+  (0.0ms) begin transaction
68581
+  (0.0ms) rollback transaction
68582
+  (0.0ms) begin transaction
68583
+  (0.0ms) rollback transaction
68584
+  (0.0ms) begin transaction
68585
+  (0.0ms) rollback transaction
68586
+  (0.0ms) begin transaction
68587
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68588
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68589
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68590
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68591
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68592
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68593
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (17.7ms)
68594
+ Completed 200 OK in 177ms (Views: 172.3ms | ActiveRecord: 0.2ms)
68595
+  (0.1ms) SAVEPOINT active_record_1
68596
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "company"], ["value", "--- apple\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68597
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68598
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68599
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68600
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68601
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68602
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68603
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68604
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.6ms)
68605
+ Completed 200 OK in 13ms (Views: 7.6ms | ActiveRecord: 0.2ms)
68606
+  (0.1ms) rollback transaction
68607
+  (0.0ms) begin transaction
68608
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68609
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68610
+ Settings Load (0.3ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68611
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68612
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68613
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68614
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.7ms)
68615
+ Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.4ms)
68616
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68617
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68618
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68619
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68620
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68621
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68622
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68623
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.3ms)
68624
+ Completed 200 OK in 15ms (Views: 7.8ms | ActiveRecord: 0.1ms)
68625
+  (0.1ms) rollback transaction
68626
+  (0.0ms) begin transaction
68627
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68628
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68629
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68630
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68631
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68632
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68633
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.1ms)
68634
+ Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.1ms)
68635
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68636
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68637
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68638
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68639
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68640
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68641
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68642
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.5ms)
68643
+ Completed 200 OK in 20ms (Views: 8.9ms | ActiveRecord: 0.1ms)
68644
+  (0.1ms) rollback transaction
68645
+  (0.0ms) begin transaction
68646
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68647
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68648
+ Settings Load (0.3ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68649
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68650
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68651
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68652
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (27.4ms)
68653
+ Completed 200 OK in 33ms (Views: 30.4ms | ActiveRecord: 0.3ms)
68654
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68655
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68656
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68657
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68658
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68659
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
68660
+ Completed 200 OK in 9ms (Views: 6.4ms | ActiveRecord: 0.1ms)
68661
+  (0.1ms) rollback transaction
68662
+  (0.0ms) begin transaction
68663
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68664
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68665
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68666
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68667
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68668
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68669
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.0ms)
68670
+ Completed 200 OK in 11ms (Views: 8.1ms | ActiveRecord: 0.2ms)
68671
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68672
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68673
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68674
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68675
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68676
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68677
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.7ms)
68678
+ Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.1ms)
68679
+  (0.0ms) rollback transaction
68680
+  (0.0ms) begin transaction
68681
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68682
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68683
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68684
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68685
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68686
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68687
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.6ms)
68688
+ Completed 200 OK in 9ms (Views: 6.2ms | ActiveRecord: 0.1ms)
68689
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68690
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68691
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"new", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68692
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68693
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68694
+  (0.0ms) SAVEPOINT active_record_1
68695
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68697
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68698
+  (0.1ms) SAVEPOINT active_record_1
68699
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68701
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68702
+  (0.1ms) SAVEPOINT active_record_1
68703
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68705
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68706
+  (0.0ms) SAVEPOINT active_record_1
68707
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68709
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68710
+  (0.1ms) SAVEPOINT active_record_1
68711
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68713
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68714
+  (0.0ms) SAVEPOINT active_record_1
68715
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68717
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68718
+  (0.0ms) SAVEPOINT active_record_1
68719
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68721
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68722
+  (0.0ms) SAVEPOINT active_record_1
68723
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68724
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68725
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68726
+  (0.0ms) SAVEPOINT active_record_1
68727
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :new\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68729
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68730
+  (0.1ms) SAVEPOINT active_record_1
68731
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68733
+ Redirected to http://www.example.com/settings/
68734
+ Completed 302 Found in 68ms (ActiveRecord: 3.8ms)
68735
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68736
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68737
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68738
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68739
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68740
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68741
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.5ms)
68742
+ Completed 200 OK in 15ms (Views: 10.5ms | ActiveRecord: 0.2ms)
68743
+  (0.1ms) rollback transaction
68744
+  (0.0ms) begin transaction
68745
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68746
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68747
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68748
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68749
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68750
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68751
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.5ms)
68752
+ Completed 200 OK in 11ms (Views: 8.1ms | ActiveRecord: 0.1ms)
68753
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68754
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68755
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"55.4", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68756
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68757
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68758
+  (0.1ms) SAVEPOINT active_record_1
68759
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68761
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68762
+  (0.0ms) SAVEPOINT active_record_1
68763
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68765
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68766
+  (0.1ms) SAVEPOINT active_record_1
68767
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 55.4\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68769
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68770
+  (0.0ms) SAVEPOINT active_record_1
68771
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68772
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68773
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68774
+  (0.2ms) SAVEPOINT active_record_1
68775
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68777
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68778
+  (0.0ms) SAVEPOINT active_record_1
68779
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68781
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68782
+  (0.0ms) SAVEPOINT active_record_1
68783
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68784
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68785
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68786
+  (0.0ms) SAVEPOINT active_record_1
68787
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68789
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68790
+  (0.0ms) SAVEPOINT active_record_1
68791
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68792
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68793
+ Settings Load (0.5ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68794
+  (0.0ms) SAVEPOINT active_record_1
68795
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
68796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68797
+ Redirected to http://www.example.com/settings/
68798
+ Completed 302 Found in 65ms (ActiveRecord: 3.9ms)
68799
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:16 +0300
68800
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68801
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68802
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68803
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68804
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68805
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.7ms)
68806
+ Completed 200 OK in 21ms (Views: 16.7ms | ActiveRecord: 0.1ms)
68807
+  (0.3ms) rollback transaction
68808
+  (0.1ms) begin transaction
68809
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68810
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68811
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68812
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68813
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68814
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68815
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.9ms)
68816
+ Completed 200 OK in 14ms (Views: 10.9ms | ActiveRecord: 0.1ms)
68817
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68818
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68819
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "style"=>"{\"border_color\":\"e0e0e0\",\"block_color\":\"000000\"}", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68820
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68821
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68822
+  (0.0ms) SAVEPOINT active_record_1
68823
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68825
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68826
+  (0.3ms) SAVEPOINT active_record_1
68827
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68829
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68830
+  (0.0ms) SAVEPOINT active_record_1
68831
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68833
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68834
+  (0.0ms) SAVEPOINT active_record_1
68835
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: '000000'\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68836
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68837
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68838
+  (0.0ms) SAVEPOINT active_record_1
68839
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68841
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68842
+  (0.1ms) SAVEPOINT active_record_1
68843
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68844
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68845
+ Settings Load (0.6ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68846
+  (0.1ms) SAVEPOINT active_record_1
68847
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68849
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68850
+  (0.7ms) SAVEPOINT active_record_1
68851
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68852
+  (0.8ms) RELEASE SAVEPOINT active_record_1
68853
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68854
+  (0.1ms) SAVEPOINT active_record_1
68855
+ SQL (0.9ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68856
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68857
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68858
+  (0.1ms) SAVEPOINT active_record_1
68859
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68861
+ Redirected to http://www.example.com/settings/
68862
+ Completed 302 Found in 78ms (ActiveRecord: 7.0ms)
68863
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68864
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68865
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68866
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68867
+ CACHE (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68868
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68869
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (74.6ms)
68870
+ Completed 200 OK in 105ms (Views: 91.5ms | ActiveRecord: 0.4ms)
68871
+  (0.1ms) rollback transaction
68872
+  (0.1ms) begin transaction
68873
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68874
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68875
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68876
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68877
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68878
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68879
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (14.3ms)
68880
+ Completed 200 OK in 35ms (Views: 26.0ms | ActiveRecord: 0.2ms)
68881
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68882
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68883
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68884
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68885
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68886
+  (0.0ms) SAVEPOINT active_record_1
68887
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68889
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68890
+  (0.0ms) SAVEPOINT active_record_1
68891
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68893
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68894
+  (0.0ms) SAVEPOINT active_record_1
68895
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68897
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68898
+  (0.1ms) SAVEPOINT active_record_1
68899
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68901
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68902
+  (0.0ms) SAVEPOINT active_record_1
68903
+ SQL (0.5ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68904
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68905
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68906
+  (0.0ms) SAVEPOINT active_record_1
68907
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68908
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68909
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68910
+  (0.1ms) SAVEPOINT active_record_1
68911
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68912
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68913
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68914
+  (0.0ms) SAVEPOINT active_record_1
68915
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68917
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68918
+  (0.0ms) SAVEPOINT active_record_1
68919
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68921
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68922
+  (0.0ms) SAVEPOINT active_record_1
68923
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68924
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68925
+ Redirected to http://www.example.com/settings/
68926
+ Completed 302 Found in 66ms (ActiveRecord: 3.9ms)
68927
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68928
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68929
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68930
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68931
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68932
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68933
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.4ms)
68934
+ Completed 200 OK in 18ms (Views: 8.4ms | ActiveRecord: 0.1ms)
68935
+  (0.1ms) rollback transaction
68936
+  (0.2ms) begin transaction
68937
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68938
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68939
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68940
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68941
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68942
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68943
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.6ms)
68944
+ Completed 200 OK in 9ms (Views: 6.0ms | ActiveRecord: 0.1ms)
68945
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68946
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
68947
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"552", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
68948
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68949
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
68950
+  (0.0ms) SAVEPOINT active_record_1
68951
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68952
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68953
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
68954
+  (0.0ms) SAVEPOINT active_record_1
68955
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 552\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68956
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68957
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
68958
+  (0.0ms) SAVEPOINT active_record_1
68959
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68960
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68961
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
68962
+  (0.1ms) SAVEPOINT active_record_1
68963
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68965
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
68966
+  (0.0ms) SAVEPOINT active_record_1
68967
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68969
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
68970
+  (0.0ms) SAVEPOINT active_record_1
68971
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68973
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
68974
+  (0.0ms) SAVEPOINT active_record_1
68975
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68977
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
68978
+  (0.0ms) SAVEPOINT active_record_1
68979
+ SQL (0.4ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68981
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
68982
+  (0.0ms) SAVEPOINT active_record_1
68983
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68984
+  (0.1ms) RELEASE SAVEPOINT active_record_1
68985
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
68986
+  (0.0ms) SAVEPOINT active_record_1
68987
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
68988
+  (0.0ms) RELEASE SAVEPOINT active_record_1
68989
+ Redirected to http://www.example.com/settings/
68990
+ Completed 302 Found in 53ms (ActiveRecord: 3.5ms)
68991
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
68992
+ Processing by RailsSettingsUi::SettingsController#index as HTML
68993
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68994
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
68995
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68996
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
68997
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.1ms)
68998
+ Completed 200 OK in 15ms (Views: 10.1ms | ActiveRecord: 0.2ms)
68999
+  (0.1ms) rollback transaction
69000
+  (0.1ms) begin transaction
69001
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69002
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69003
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69004
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69005
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69006
+ CACHE (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69007
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.9ms)
69008
+ Completed 200 OK in 10ms (Views: 6.8ms | ActiveRecord: 0.2ms)
69009
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69010
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69011
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69012
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69013
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69014
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.2ms)
69015
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.1ms)
69016
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69017
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69018
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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", "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69019
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69020
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69021
+  (0.0ms) SAVEPOINT active_record_1
69022
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69024
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69025
+  (0.0ms) SAVEPOINT active_record_1
69026
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69028
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69029
+  (0.0ms) SAVEPOINT active_record_1
69030
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69032
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69033
+  (0.0ms) SAVEPOINT active_record_1
69034
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69035
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69036
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69037
+  (0.0ms) SAVEPOINT active_record_1
69038
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69040
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69041
+  (0.0ms) SAVEPOINT active_record_1
69042
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69043
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69044
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69045
+  (0.0ms) SAVEPOINT active_record_1
69046
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "--- :auto\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69047
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69048
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69049
+  (0.0ms) SAVEPOINT active_record_1
69050
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69052
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69053
+  (0.0ms) SAVEPOINT active_record_1
69054
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69055
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69056
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69057
+  (0.0ms) SAVEPOINT active_record_1
69058
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69060
+ Redirected to http://www.example.com/settings/
69061
+ Completed 302 Found in 48ms (ActiveRecord: 2.8ms)
69062
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69063
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69064
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69065
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69066
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69067
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.9ms)
69068
+ Completed 200 OK in 13ms (Views: 9.0ms | ActiveRecord: 0.1ms)
69069
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69070
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69071
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>"manual", "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
69072
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69073
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69074
+  (0.0ms) SAVEPOINT active_record_1
69075
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69076
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69077
+  (0.0ms) SAVEPOINT active_record_1
69078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69079
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69080
+  (0.1ms) SAVEPOINT active_record_1
69081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69082
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69083
+  (0.0ms) SAVEPOINT active_record_1
69084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69085
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69086
+  (0.0ms) SAVEPOINT active_record_1
69087
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69088
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69089
+  (0.0ms) SAVEPOINT active_record_1
69090
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
69091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69092
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69093
+  (0.0ms) SAVEPOINT active_record_1
69094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69095
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69096
+  (0.0ms) SAVEPOINT active_record_1
69097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69098
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69099
+  (0.1ms) SAVEPOINT active_record_1
69100
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69101
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69102
+  (0.0ms) SAVEPOINT active_record_1
69103
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69104
+ Redirected to http://www.example.com/settings/
69105
+ Completed 302 Found in 45ms (ActiveRecord: 2.4ms)
69106
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69107
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69108
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69109
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69110
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69111
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.4ms)
69112
+ Completed 200 OK in 11ms (Views: 7.1ms | ActiveRecord: 0.1ms)
69113
+  (0.1ms) rollback transaction
69114
+  (0.1ms) begin transaction
69115
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69116
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69117
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69118
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69119
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69120
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69121
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
69122
+ Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.1ms)
69123
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69124
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69125
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"=>{"manual"=>"on"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69126
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69127
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69128
+  (0.1ms) SAVEPOINT active_record_1
69129
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69130
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69131
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69132
+  (0.0ms) SAVEPOINT active_record_1
69133
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69134
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69135
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69136
+  (0.0ms) SAVEPOINT active_record_1
69137
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69138
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69139
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69140
+  (0.0ms) SAVEPOINT active_record_1
69141
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69143
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69144
+  (0.0ms) SAVEPOINT active_record_1
69145
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69147
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69148
+  (0.0ms) SAVEPOINT active_record_1
69149
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69151
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69152
+  (0.1ms) SAVEPOINT active_record_1
69153
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :manual\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69155
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69156
+  (0.0ms) SAVEPOINT active_record_1
69157
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69158
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69159
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69160
+  (0.0ms) SAVEPOINT active_record_1
69161
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69162
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69163
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69164
+  (0.1ms) SAVEPOINT active_record_1
69165
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:17 UTC], ["updated_at", 2017-03-19 16:41:17 UTC]]
69166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69167
+ Redirected to http://www.example.com/settings/
69168
+ Completed 302 Found in 54ms (ActiveRecord: 3.2ms)
69169
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69170
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69171
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69172
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69173
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69174
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69175
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.9ms)
69176
+ Completed 200 OK in 12ms (Views: 8.6ms | ActiveRecord: 0.1ms)
69177
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69178
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69179
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
69180
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69181
+ Settings Load (0.3ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69182
+  (0.0ms) SAVEPOINT active_record_1
69183
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69184
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69185
+  (0.0ms) SAVEPOINT active_record_1
69186
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69187
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69188
+  (0.1ms) SAVEPOINT active_record_1
69189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69190
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69191
+  (0.0ms) SAVEPOINT active_record_1
69192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69193
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69194
+  (0.0ms) SAVEPOINT active_record_1
69195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69196
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69197
+  (0.0ms) SAVEPOINT active_record_1
69198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69199
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69200
+  (0.1ms) SAVEPOINT active_record_1
69201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69202
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69203
+  (0.0ms) SAVEPOINT active_record_1
69204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69205
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69206
+  (0.0ms) SAVEPOINT active_record_1
69207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69208
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69209
+  (0.0ms) SAVEPOINT active_record_1
69210
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- []\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
69211
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69212
+ Redirected to http://www.example.com/settings/
69213
+ Completed 302 Found in 45ms (ActiveRecord: 2.5ms)
69214
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69215
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69216
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69217
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69218
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69219
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69220
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.5ms)
69221
+ Completed 200 OK in 13ms (Views: 8.9ms | ActiveRecord: 0.2ms)
69222
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69223
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69224
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>{"auto"=>"on", "manual"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
69225
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69226
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69227
+  (0.0ms) SAVEPOINT active_record_1
69228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69229
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69230
+  (0.0ms) SAVEPOINT active_record_1
69231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69232
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69233
+  (0.0ms) SAVEPOINT active_record_1
69234
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69235
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69236
+  (0.0ms) SAVEPOINT active_record_1
69237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69238
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69239
+  (0.0ms) SAVEPOINT active_record_1
69240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69241
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69242
+  (0.0ms) SAVEPOINT active_record_1
69243
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
69244
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69245
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69246
+  (0.1ms) SAVEPOINT active_record_1
69247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69248
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69249
+  (0.1ms) SAVEPOINT active_record_1
69250
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69251
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69252
+  (0.0ms) SAVEPOINT active_record_1
69253
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69254
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69255
+  (0.0ms) SAVEPOINT active_record_1
69256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69257
+ Redirected to http://www.example.com/settings/
69258
+ Completed 302 Found in 43ms (ActiveRecord: 2.3ms)
69259
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69260
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69261
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69262
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69263
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69264
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69265
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.6ms)
69266
+ Completed 200 OK in 14ms (Views: 9.7ms | ActiveRecord: 0.2ms)
69267
+  (0.2ms) rollback transaction
69268
+  (0.1ms) begin transaction
69269
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69270
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69271
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69272
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69273
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69274
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69275
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.1ms)
69276
+ Completed 200 OK in 12ms (Views: 9.2ms | ActiveRecord: 0.1ms)
69277
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69278
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69279
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69280
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69281
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69282
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.0ms)
69283
+ Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.1ms)
69284
+  (0.1ms) rollback transaction
69285
+  (0.1ms) begin transaction
69286
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69287
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69288
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69289
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69290
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69291
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69292
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.5ms)
69293
+ Completed 200 OK in 12ms (Views: 8.5ms | ActiveRecord: 0.1ms)
69294
+  (0.1ms) rollback transaction
69295
+  (0.0ms) begin transaction
69296
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69297
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69298
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69299
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69300
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69301
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69302
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.6ms)
69303
+ Completed 200 OK in 11ms (Views: 7.9ms | ActiveRecord: 0.1ms)
69304
+  (0.1ms) rollback transaction
69305
+  (0.1ms) begin transaction
69306
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69307
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69308
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69309
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69310
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69311
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69312
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.2ms)
69313
+ Completed 200 OK in 9ms (Views: 5.6ms | ActiveRecord: 0.2ms)
69314
+  (0.1ms) rollback transaction
69315
+  (0.1ms) begin transaction
69316
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69317
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69318
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69319
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69320
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69321
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69322
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.9ms)
69323
+ Completed 200 OK in 10ms (Views: 6.9ms | ActiveRecord: 0.1ms)
69324
+  (0.1ms) rollback transaction
69325
+  (0.1ms) begin transaction
69326
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69327
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69328
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69329
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69330
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69331
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69332
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
69333
+ Completed 200 OK in 9ms (Views: 6.4ms | ActiveRecord: 0.1ms)
69334
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:17 +0300
69335
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69336
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69337
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69338
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69339
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.6ms)
69340
+ Completed 200 OK in 12ms (Views: 8.0ms | ActiveRecord: 0.1ms)
69341
+  (0.1ms) rollback transaction
69342
+  (0.1ms) begin transaction
69343
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:18 +0300
69344
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69345
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69346
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69347
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69348
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69349
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (14.4ms)
69350
+ Completed 200 OK in 36ms (Views: 29.7ms | ActiveRecord: 0.2ms)
69351
+  (0.1ms) rollback transaction
69352
+  (0.1ms) begin transaction
69353
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:18 +0300
69354
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69355
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69356
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
69357
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69358
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69359
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin (3.6ms)
69360
+ Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 0.1ms)
69361
+  (0.0ms) rollback transaction
69362
+  (0.3ms) CREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime)
69363
+  (0.1ms) select sqlite_version(*)
69364
+  (0.1ms) CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
69365
+  (0.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
69366
+  (0.0ms) SELECT version FROM "schema_migrations"
69367
+  (0.0ms) INSERT INTO "schema_migrations" (version) VALUES (20140320182332)
69368
+  (0.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69369
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
69370
+  (0.1ms) begin transaction
69371
+ SQL (0.1ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:41:44 UTC], ["updated_at", 2017-03-19 16:41:44 UTC]]
69372
+  (0.0ms) commit transaction
69373
+  (0.1ms) begin transaction
69374
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69375
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69376
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69377
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69378
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69379
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69380
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (22.9ms)
69381
+ Completed 200 OK in 212ms (Views: 206.0ms | ActiveRecord: 0.5ms)
69382
+  (0.1ms) rollback transaction
69383
+  (0.1ms) begin transaction
69384
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69385
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69386
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69387
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69388
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69389
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69390
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.8ms)
69391
+ Completed 200 OK in 12ms (Views: 9.0ms | ActiveRecord: 0.1ms)
69392
+  (0.1ms) rollback transaction
69393
+  (0.1ms) begin transaction
69394
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69395
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69396
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69397
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69398
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69399
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69400
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.0ms)
69401
+ Completed 200 OK in 11ms (Views: 7.9ms | ActiveRecord: 0.1ms)
69402
+  (0.1ms) rollback transaction
69403
+  (0.4ms) begin transaction
69404
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69405
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69406
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69407
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69408
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69409
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69410
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.3ms)
69411
+ Completed 200 OK in 11ms (Views: 8.0ms | ActiveRecord: 0.1ms)
69412
+  (0.1ms) rollback transaction
69413
+  (0.0ms) begin transaction
69414
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69415
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69416
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69417
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69418
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69419
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69420
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
69421
+ Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.2ms)
69422
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69423
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69424
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69425
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69426
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69427
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.8ms)
69428
+ Completed 200 OK in 11ms (Views: 7.8ms | ActiveRecord: 0.1ms)
69429
+  (0.1ms) rollback transaction
69430
+  (0.1ms) begin transaction
69431
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69432
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69433
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69434
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69435
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69436
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69437
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.7ms)
69438
+ Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.1ms)
69439
+  (0.1ms) SAVEPOINT active_record_1
69440
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "company"], ["value", "--- apple\n...\n"], ["created_at", 2017-03-19 16:41:44 UTC], ["updated_at", 2017-03-19 16:41:44 UTC]]
69441
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69442
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69443
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69444
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69445
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69446
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69447
+ CACHE (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69448
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.2ms)
69449
+ Completed 200 OK in 12ms (Views: 7.1ms | ActiveRecord: 0.2ms)
69450
+  (0.1ms) rollback transaction
69451
+  (0.0ms) begin transaction
69452
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69453
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69454
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69455
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69456
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69457
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69458
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.3ms)
69459
+ Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.1ms)
69460
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69461
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69462
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69463
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69464
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69465
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69466
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.1ms)
69467
+ Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.1ms)
69468
+  (0.1ms) rollback transaction
69469
+  (0.0ms) begin transaction
69470
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69471
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69472
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69473
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69474
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69475
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69476
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.9ms)
69477
+ Completed 200 OK in 13ms (Views: 9.0ms | ActiveRecord: 0.1ms)
69478
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69479
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69480
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69481
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69482
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69483
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (29.9ms)
69484
+ Completed 200 OK in 38ms (Views: 33.5ms | ActiveRecord: 0.1ms)
69485
+  (0.1ms) rollback transaction
69486
+  (0.1ms) begin transaction
69487
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69488
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69489
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69490
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69491
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69492
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69493
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.7ms)
69494
+ Completed 200 OK in 11ms (Views: 7.8ms | ActiveRecord: 0.1ms)
69495
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69496
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69497
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69498
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69499
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69500
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69501
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69502
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.9ms)
69503
+ Completed 200 OK in 19ms (Views: 9.0ms | ActiveRecord: 0.1ms)
69504
+  (0.1ms) rollback transaction
69505
+  (0.0ms) begin transaction
69506
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69507
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69508
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69509
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69510
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69511
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69512
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.8ms)
69513
+ Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.1ms)
69514
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:44 +0300
69515
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69516
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69517
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69518
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69519
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69520
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69521
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
69522
+ Completed 200 OK in 17ms (Views: 8.0ms | ActiveRecord: 0.1ms)
69523
+  (0.1ms) rollback transaction
69524
+  (0.1ms) begin transaction
69525
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69526
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69527
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69528
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69529
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69530
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69531
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.4ms)
69532
+ Completed 200 OK in 12ms (Views: 9.0ms | ActiveRecord: 0.1ms)
69533
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69534
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69535
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"55.4", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69536
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69537
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69538
+  (0.0ms) SAVEPOINT active_record_1
69539
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69541
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69542
+  (0.0ms) SAVEPOINT active_record_1
69543
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69545
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69546
+  (0.0ms) SAVEPOINT active_record_1
69547
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 55.4\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69549
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69550
+  (0.0ms) SAVEPOINT active_record_1
69551
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69553
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69554
+  (0.0ms) SAVEPOINT active_record_1
69555
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69557
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69558
+  (0.0ms) SAVEPOINT active_record_1
69559
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69561
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69562
+  (0.1ms) SAVEPOINT active_record_1
69563
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69564
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69565
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69566
+  (0.0ms) SAVEPOINT active_record_1
69567
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69569
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69570
+  (0.0ms) SAVEPOINT active_record_1
69571
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69573
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69574
+  (0.1ms) SAVEPOINT active_record_1
69575
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69576
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69577
+ Redirected to http://www.example.com/settings/
69578
+ Completed 302 Found in 54ms (ActiveRecord: 3.1ms)
69579
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69580
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69581
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69582
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69583
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69584
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69585
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (22.7ms)
69586
+ Completed 200 OK in 68ms (Views: 36.9ms | ActiveRecord: 0.2ms)
69587
+  (0.1ms) rollback transaction
69588
+  (0.2ms) begin transaction
69589
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69590
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69591
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69592
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69593
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69594
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69595
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (27.5ms)
69596
+ Completed 200 OK in 42ms (Views: 36.5ms | ActiveRecord: 0.2ms)
69597
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69598
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69599
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69600
+ Settings Load (2.4ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69601
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69602
+  (0.0ms) SAVEPOINT active_record_1
69603
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69604
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69605
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69606
+  (0.0ms) SAVEPOINT active_record_1
69607
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69609
+ Settings Load (0.4ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69610
+  (0.1ms) SAVEPOINT active_record_1
69611
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69612
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69613
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69614
+  (0.3ms) SAVEPOINT active_record_1
69615
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69616
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69617
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69618
+  (0.1ms) SAVEPOINT active_record_1
69619
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69620
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69621
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69622
+  (0.0ms) SAVEPOINT active_record_1
69623
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69625
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69626
+  (0.0ms) SAVEPOINT active_record_1
69627
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69628
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69629
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69630
+  (0.0ms) SAVEPOINT active_record_1
69631
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69633
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69634
+  (0.0ms) SAVEPOINT active_record_1
69635
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69636
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69637
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69638
+  (0.0ms) SAVEPOINT active_record_1
69639
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69641
+ Redirected to http://www.example.com/settings/
69642
+ Completed 302 Found in 80ms (ActiveRecord: 6.6ms)
69643
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69644
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69645
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69646
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69647
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69648
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69649
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.3ms)
69650
+ Completed 200 OK in 14ms (Views: 10.3ms | ActiveRecord: 0.1ms)
69651
+  (0.1ms) rollback transaction
69652
+  (0.1ms) begin transaction
69653
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69654
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69655
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69656
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69657
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69658
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69659
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (7.9ms)
69660
+ Completed 200 OK in 16ms (Views: 12.4ms | ActiveRecord: 0.1ms)
69661
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69662
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69663
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "style"=>"{\"border_color\":\"e0e0e0\",\"block_color\":\"000000\"}", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69664
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69665
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69666
+  (0.0ms) SAVEPOINT active_record_1
69667
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69669
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69670
+  (0.1ms) SAVEPOINT active_record_1
69671
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69673
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69674
+  (0.0ms) SAVEPOINT active_record_1
69675
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69676
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69677
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69678
+  (0.0ms) SAVEPOINT active_record_1
69679
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: '000000'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69681
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69682
+  (0.0ms) SAVEPOINT active_record_1
69683
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69684
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69685
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69686
+  (0.0ms) SAVEPOINT active_record_1
69687
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69689
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69690
+  (0.0ms) SAVEPOINT active_record_1
69691
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69693
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69694
+  (0.0ms) SAVEPOINT active_record_1
69695
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69697
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69698
+  (0.0ms) SAVEPOINT active_record_1
69699
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69700
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69701
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69702
+  (0.5ms) SAVEPOINT active_record_1
69703
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69704
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69705
+ Redirected to http://www.example.com/settings/
69706
+ Completed 302 Found in 59ms (ActiveRecord: 3.6ms)
69707
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69708
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69709
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69710
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69711
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69712
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69713
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (9.3ms)
69714
+ Completed 200 OK in 17ms (Views: 13.1ms | ActiveRecord: 0.3ms)
69715
+  (0.1ms) rollback transaction
69716
+  (0.0ms) begin transaction
69717
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69718
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69719
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69720
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69721
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69722
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69723
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.9ms)
69724
+ Completed 200 OK in 11ms (Views: 7.0ms | ActiveRecord: 0.1ms)
69725
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69726
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69727
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"552", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69728
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69729
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69730
+  (0.0ms) SAVEPOINT active_record_1
69731
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69733
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69734
+  (0.1ms) SAVEPOINT active_record_1
69735
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 552\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69737
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69738
+  (0.0ms) SAVEPOINT active_record_1
69739
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69741
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69742
+  (0.1ms) SAVEPOINT active_record_1
69743
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69745
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69746
+  (0.0ms) SAVEPOINT active_record_1
69747
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69749
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69750
+  (0.1ms) SAVEPOINT active_record_1
69751
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69753
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69754
+  (0.0ms) SAVEPOINT active_record_1
69755
+ SQL (0.3ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69757
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69758
+  (0.1ms) SAVEPOINT active_record_1
69759
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69760
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69761
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69762
+  (0.0ms) SAVEPOINT active_record_1
69763
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69765
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69766
+  (0.0ms) SAVEPOINT active_record_1
69767
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69769
+ Redirected to http://www.example.com/settings/
69770
+ Completed 302 Found in 48ms (ActiveRecord: 3.7ms)
69771
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69772
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69773
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69774
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69775
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69776
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69777
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.9ms)
69778
+ Completed 200 OK in 14ms (Views: 9.7ms | ActiveRecord: 0.1ms)
69779
+  (0.1ms) rollback transaction
69780
+  (0.0ms) begin transaction
69781
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69782
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69783
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69784
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69785
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69786
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69787
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.4ms)
69788
+ Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.1ms)
69789
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69790
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69791
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"}, "timer"=>"7200", "project_status"=>"new", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69792
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69793
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69794
+  (0.1ms) SAVEPOINT active_record_1
69795
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69797
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69798
+  (0.1ms) SAVEPOINT active_record_1
69799
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69800
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69801
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69802
+  (0.0ms) SAVEPOINT active_record_1
69803
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69805
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69806
+  (0.0ms) SAVEPOINT active_record_1
69807
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69808
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69809
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69810
+  (0.1ms) SAVEPOINT active_record_1
69811
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69813
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69814
+  (0.0ms) SAVEPOINT active_record_1
69815
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69816
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69817
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69818
+  (0.0ms) SAVEPOINT active_record_1
69819
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69821
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69822
+  (0.0ms) SAVEPOINT active_record_1
69823
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69824
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69825
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69826
+  (0.0ms) SAVEPOINT active_record_1
69827
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :new\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69829
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69830
+  (0.0ms) SAVEPOINT active_record_1
69831
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69833
+ Redirected to http://www.example.com/settings/
69834
+ Completed 302 Found in 50ms (ActiveRecord: 3.1ms)
69835
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69836
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69837
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69838
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69839
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69840
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69841
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.4ms)
69842
+ Completed 200 OK in 13ms (Views: 9.1ms | ActiveRecord: 0.2ms)
69843
+  (0.1ms) rollback transaction
69844
+  (0.0ms) begin transaction
69845
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69846
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69847
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69848
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69849
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69850
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69851
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.4ms)
69852
+ Completed 200 OK in 10ms (Views: 6.8ms | ActiveRecord: 0.1ms)
69853
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69854
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69855
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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"=>{"manual"=>"on"}, "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
69856
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69857
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69858
+  (0.0ms) SAVEPOINT active_record_1
69859
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69861
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69862
+  (0.0ms) SAVEPOINT active_record_1
69863
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69864
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69865
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69866
+  (0.0ms) SAVEPOINT active_record_1
69867
+ SQL (0.2ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69869
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69870
+  (0.1ms) SAVEPOINT active_record_1
69871
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69872
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69873
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69874
+  (0.0ms) SAVEPOINT active_record_1
69875
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69877
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69878
+  (0.1ms) SAVEPOINT active_record_1
69879
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69880
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69881
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69882
+  (0.0ms) SAVEPOINT active_record_1
69883
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "---\n- :manual\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69884
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69885
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69886
+  (0.0ms) SAVEPOINT active_record_1
69887
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69889
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69890
+  (0.0ms) SAVEPOINT active_record_1
69891
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69893
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69894
+  (0.0ms) SAVEPOINT active_record_1
69895
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
69896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69897
+ Redirected to http://www.example.com/settings/
69898
+ Completed 302 Found in 50ms (ActiveRecord: 3.0ms)
69899
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69900
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69901
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69902
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69903
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69904
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69905
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.2ms)
69906
+ Completed 200 OK in 12ms (Views: 7.8ms | ActiveRecord: 0.1ms)
69907
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69908
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69909
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
69910
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69911
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69912
+  (0.0ms) SAVEPOINT active_record_1
69913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69914
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69915
+  (0.0ms) SAVEPOINT active_record_1
69916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69917
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69918
+  (0.0ms) SAVEPOINT active_record_1
69919
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69920
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69921
+  (0.0ms) SAVEPOINT active_record_1
69922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69923
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69924
+  (0.0ms) SAVEPOINT active_record_1
69925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69926
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69927
+  (0.0ms) SAVEPOINT active_record_1
69928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69929
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69930
+  (0.0ms) SAVEPOINT active_record_1
69931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69932
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69933
+  (0.0ms) SAVEPOINT active_record_1
69934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69935
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69936
+  (0.0ms) SAVEPOINT active_record_1
69937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69938
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69939
+  (0.0ms) SAVEPOINT active_record_1
69940
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- []\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
69941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69942
+ Redirected to http://www.example.com/settings/
69943
+ Completed 302 Found in 41ms (ActiveRecord: 2.2ms)
69944
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69945
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69946
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69947
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69948
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69949
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69950
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.3ms)
69951
+ Completed 200 OK in 12ms (Views: 7.9ms | ActiveRecord: 0.1ms)
69952
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69953
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
69954
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>{"auto"=>"on", "manual"=>"on"}, "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
69955
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69956
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
69957
+  (0.0ms) SAVEPOINT active_record_1
69958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69959
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
69960
+  (0.0ms) SAVEPOINT active_record_1
69961
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69962
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
69963
+  (0.0ms) SAVEPOINT active_record_1
69964
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69965
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
69966
+  (0.0ms) SAVEPOINT active_record_1
69967
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69968
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
69969
+  (0.0ms) SAVEPOINT active_record_1
69970
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69971
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
69972
+  (0.0ms) SAVEPOINT active_record_1
69973
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
69974
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69975
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
69976
+  (0.0ms) SAVEPOINT active_record_1
69977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69978
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
69979
+  (0.0ms) SAVEPOINT active_record_1
69980
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69981
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
69982
+  (0.1ms) SAVEPOINT active_record_1
69983
+  (0.1ms) RELEASE SAVEPOINT active_record_1
69984
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
69985
+  (0.1ms) SAVEPOINT active_record_1
69986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
69987
+ Redirected to http://www.example.com/settings/
69988
+ Completed 302 Found in 46ms (ActiveRecord: 2.5ms)
69989
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
69990
+ Processing by RailsSettingsUi::SettingsController#index as HTML
69991
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69992
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
69993
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69994
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
69995
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (6.5ms)
69996
+ Completed 200 OK in 13ms (Views: 9.3ms | ActiveRecord: 0.2ms)
69997
+  (0.1ms) rollback transaction
69998
+  (0.1ms) begin transaction
69999
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
70000
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70001
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70002
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70003
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70004
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70005
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
70006
+ Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.1ms)
70007
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
70008
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70009
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70010
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70011
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70012
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.0ms)
70013
+ Completed 200 OK in 8ms (Views: 5.6ms | ActiveRecord: 0.1ms)
70014
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
70015
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
70016
+ Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "angle"=>"0.5", "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", "timer"=>"7200", "project_status"=>"finished", "locale"=>{"en"=>"on", "ru"=>"on"}}, "commit"=>"Save all"}
70017
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70018
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
70019
+  (0.0ms) SAVEPOINT active_record_1
70020
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_name"], ["value", "--- Dummy\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70022
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
70023
+  (0.0ms) SAVEPOINT active_record_1
70024
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "limit"], ["value", "--- 150\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70025
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70026
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
70027
+  (0.0ms) SAVEPOINT active_record_1
70028
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "angle"], ["value", "--- 0.5\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70029
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70030
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
70031
+  (0.0ms) SAVEPOINT active_record_1
70032
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "style"], ["value", "---\nborder_color: e0e0e0\nblock_color: ffffff\ntitle:\n font: Tahoma\n size: '12'\n color: '107821'\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70034
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
70035
+  (0.1ms) SAVEPOINT active_record_1
70036
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "check_something"], ["value", "--- true\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70037
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70038
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
70039
+  (0.0ms) SAVEPOINT active_record_1
70040
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "description"], ["value", "--- But I must explain to you how all this mistaken idea of denouncing pleasure and\n praising pain was born and I will give you a complete account of the system, and\n expound the actual teachings of the great explorer of the truth, the master-builder\n of human happiness. No one rejects, dislikes, or avoids pleasure itself, because\n it is pleasure, but because those who do not know how to pursue pleasure rationally\n encounter consequences that are extremely painful.\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70042
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
70043
+  (0.0ms) SAVEPOINT active_record_1
70044
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "mode"], ["value", "--- :auto\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70046
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
70047
+  (0.0ms) SAVEPOINT active_record_1
70048
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "timer"], ["value", "--- 7200\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70049
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70050
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
70051
+  (0.0ms) SAVEPOINT active_record_1
70052
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "project_status"], ["value", "--- :finished\n...\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70054
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
70055
+  (0.0ms) SAVEPOINT active_record_1
70056
+ SQL (0.1ms) INSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["var", "locale"], ["value", "---\n- :en\n- :ru\n"], ["created_at", 2017-03-19 16:41:45 UTC], ["updated_at", 2017-03-19 16:41:45 UTC]]
70057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70058
+ Redirected to http://www.example.com/settings/
70059
+ Completed 302 Found in 50ms (ActiveRecord: 3.1ms)
70060
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
70061
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70062
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70063
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70064
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70065
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.8ms)
70066
+ Completed 200 OK in 10ms (Views: 6.2ms | ActiveRecord: 0.1ms)
70067
+ Started PUT "/settings/update_all" for 127.0.0.1 at 2017-03-19 19:41:45 +0300
70068
+ Processing by RailsSettingsUi::SettingsController#update_all as HTML
70069
+ Parameters: {"utf8"=>"✓", "settings"=>{"angle"=>"0.5", "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.", "limit"=>"150", "locale"=>{"en"=>"on", "ru"=>"on"}, "mode"=>"manual", "project_name"=>"Dummy", "project_status"=>"finished", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "timer"=>"7200"}, "commit"=>"Save all"}
70070
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70071
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "angle"], ["LIMIT", 1]]
70072
+  (0.0ms) SAVEPOINT active_record_1
70073
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70074
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "check_something"], ["LIMIT", 1]]
70075
+  (0.0ms) SAVEPOINT active_record_1
70076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70077
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "description"], ["LIMIT", 1]]
70078
+  (0.0ms) SAVEPOINT active_record_1
70079
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70080
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "limit"], ["LIMIT", 1]]
70081
+  (0.0ms) SAVEPOINT active_record_1
70082
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70083
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "locale"], ["LIMIT", 1]]
70084
+  (0.0ms) SAVEPOINT active_record_1
70085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70086
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "mode"], ["LIMIT", 1]]
70087
+  (0.0ms) SAVEPOINT active_record_1
70088
+ SQL (0.1ms) UPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ? [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
70089
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70090
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_name"], ["LIMIT", 1]]
70091
+  (0.1ms) SAVEPOINT active_record_1
70092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70093
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "project_status"], ["LIMIT", 1]]
70094
+  (0.0ms) SAVEPOINT active_record_1
70095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70096
+ Settings Load (0.1ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "style"], ["LIMIT", 1]]
70097
+  (0.1ms) SAVEPOINT active_record_1
70098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70099
+ Settings Load (0.2ms) SELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ? [["var", "timer"], ["LIMIT", 1]]
70100
+  (0.1ms) SAVEPOINT active_record_1
70101
+  (0.1ms) RELEASE SAVEPOINT active_record_1
70102
+ Redirected to http://www.example.com/settings/
70103
+ Completed 302 Found in 47ms (ActiveRecord: 2.5ms)
70104
+ Started GET "/settings/" for 127.0.0.1 at 2017-03-19 19:41:46 +0300
70105
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70106
+ Settings Load (0.2ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70107
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70108
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70109
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (5.6ms)
70110
+ Completed 200 OK in 14ms (Views: 9.6ms | ActiveRecord: 0.2ms)
70111
+  (0.1ms) rollback transaction
70112
+  (0.1ms) begin transaction
70113
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:46 +0300
70114
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70115
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70116
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70117
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70118
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70119
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (4.4ms)
70120
+ Completed 200 OK in 12ms (Views: 7.9ms | ActiveRecord: 0.1ms)
70121
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:46 +0300
70122
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70123
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70124
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70125
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70126
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.6ms)
70127
+ Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.1ms)
70128
+  (0.1ms) rollback transaction
70129
+  (0.0ms) begin transaction
70130
+  (0.0ms) rollback transaction
70131
+  (0.0ms) begin transaction
70132
+  (0.0ms) rollback transaction
70133
+  (0.1ms) begin transaction
70134
+  (0.0ms) rollback transaction
70135
+  (0.0ms) begin transaction
70136
+  (0.1ms) rollback transaction
70137
+  (0.3ms) begin transaction
70138
+  (0.1ms) rollback transaction
70139
+  (0.1ms) begin transaction
70140
+  (0.0ms) rollback transaction
70141
+  (0.1ms) begin transaction
70142
+  (0.1ms) rollback transaction
70143
+  (0.1ms) begin transaction
70144
+  (0.0ms) rollback transaction
70145
+  (0.1ms) begin transaction
70146
+  (0.0ms) rollback transaction
70147
+  (0.1ms) begin transaction
70148
+  (0.0ms) rollback transaction
70149
+  (0.0ms) begin transaction
70150
+  (0.0ms) rollback transaction
70151
+  (0.0ms) begin transaction
70152
+  (0.0ms) rollback transaction
70153
+  (0.1ms) begin transaction
70154
+  (0.0ms) rollback transaction
70155
+  (0.1ms) begin transaction
70156
+  (0.0ms) rollback transaction
70157
+  (0.0ms) begin transaction
70158
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:46 +0300
70159
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70160
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70161
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
70162
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70163
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70164
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin (3.4ms)
70165
+ Completed 200 OK in 9ms (Views: 6.5ms | ActiveRecord: 0.1ms)
70166
+  (0.1ms) rollback transaction
70167
+  (0.1ms) begin transaction
70168
+ Started GET "/settings" for 127.0.0.1 at 2017-03-19 19:41:46 +0300
70169
+ Processing by RailsSettingsUi::SettingsController#index as HTML
70170
+ Settings Load (0.1ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70171
+ Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
70172
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70173
+ CACHE (0.0ms) SELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
70174
+ Rendered /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application (3.4ms)
70175
+ Completed 200 OK in 8ms (Views: 5.7ms | ActiveRecord: 0.1ms)
70176
+  (0.1ms) rollback transaction
70177
+  (0.0ms) begin transaction
70178
+  (0.1ms) rollback transaction
70179
+  (0.1ms) begin transaction
70180
+  (0.1ms) rollback transaction
70181
+  (0.1ms) begin transaction
70182
+  (0.1ms) rollback transaction
70183
+  (0.1ms) begin transaction
70184
+  (0.1ms) rollback transaction
70185
+  (0.0ms) begin transaction
70186
+  (0.1ms) rollback transaction
70187
+  (0.0ms) begin transaction
70188
+  (0.1ms) rollback transaction
70189
+  (0.1ms) begin transaction
70190
+  (0.1ms) rollback transaction
70191
+  (0.0ms) begin transaction
70192
+  (0.1ms) rollback transaction