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 +4 -4
- data/lib/rails-settings-ui/settings_form_coercible.rb +1 -1
- data/lib/rails-settings-ui/settings_form_validator.rb +1 -1
- data/lib/rails-settings-ui/version.rb +1 -1
- data/spec/dummy/db/schema.rb +1 -1
- data/spec/dummy/log/test.log +2493 -0
- data/spec/dummy/tmp/cache/AE1/750/rails_settings_cached%3Amode +1 -1
- data/spec/dummy/tmp/cache/B43/920/rails_settings_cached%3Aangle +1 -1
- data/spec/dummy/tmp/cache/B5B/D00/rails_settings_cached%3Alimit +1 -1
- data/spec/dummy/tmp/cache/B5D/EE0/rails_settings_cached%3Atimer +1 -1
- data/spec/dummy/tmp/cache/B6D/3A0/rails_settings_cached%3Astyle +1 -1
- data/spec/dummy/tmp/cache/BAC/5E0/rails_settings_cached%3Alocale +1 -1
- data/spec/dummy/tmp/cache/C33/A30/rails_settings_cached%3Acompany +1 -1
- data/spec/dummy/tmp/cache/DE0/670/rails_settings_cached%3Adescription +1 -1
- data/spec/dummy/tmp/cache/E33/F60/rails_settings_cached%3Aproject_name +1 -1
- data/spec/dummy/tmp/cache/F36/330/rails_settings_cached%3Aproject_status +1 -1
- data/spec/dummy/tmp/cache/F67/B90/rails_settings_cached%3Acheck_something +1 -1
- metadata +2 -6
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 552459e48b85e76a46cbce5b4f71375b99827f13
|
4
|
+
data.tar.gz: bffaa9c3b2c24e29f1d18b8972e2592586c67b79
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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?
|
data/spec/dummy/db/schema.rb
CHANGED
@@ -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
|
data/spec/dummy/log/test.log
CHANGED
@@ -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
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67700
|
+
[1m[35m (0.7ms)[0m [1m[35mCREATE 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)[0m
|
67701
|
+
[1m[35m (0.4ms)[0m [1m[34mselect sqlite_version(*)[0m
|
67702
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")[0m
|
67703
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
67704
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
67705
|
+
[1m[35m (0.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20140320182332)[0m
|
67706
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
67707
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
67708
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67709
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:40:34 UTC], ["updated_at", 2017-03-19 16:40:34 UTC]]
|
67710
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
67711
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
67712
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67713
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67714
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
67715
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
67716
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67717
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67718
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
67719
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
67720
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67721
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
67722
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67723
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
67724
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
67725
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
67726
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67727
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67731
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67732
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67733
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67737
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67742
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67743
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67744
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67748
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67752
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67753
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67754
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.4ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67761
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67762
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67763
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67767
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67771
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67772
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67773
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67780
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67781
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67782
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67786
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67790
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67791
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67792
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67798
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67799
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67800
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67804
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67808
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67809
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67810
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67816
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67817
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67821
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67825
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67826
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67827
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67834
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
67835
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67836
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67838
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
67839
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67840
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67842
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
67843
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67844
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67846
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
67847
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67848
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67850
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
67851
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67852
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67854
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
67855
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67856
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67858
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
67859
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67860
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67862
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
67863
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67864
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67866
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
67867
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67868
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67870
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
67871
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67872
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67879
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67880
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67881
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67885
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67889
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67890
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67891
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67898
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
67899
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67900
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67902
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
67903
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67904
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67906
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
67907
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67908
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67910
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
67911
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67912
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67914
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
67915
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67916
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67918
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
67919
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67920
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67922
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
67923
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67924
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67926
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
67927
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67928
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67930
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
67931
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67932
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67934
|
+
[1m[36mSettings Load (0.5ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
67935
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67936
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67943
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67944
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67945
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
67949
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67953
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
67954
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67955
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
67962
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
67963
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67964
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67966
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
67967
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67968
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67970
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
67971
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67972
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67974
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
67975
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67976
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67978
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
67979
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67980
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67982
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
67983
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67984
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67986
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
67987
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67988
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67990
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
67991
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67992
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67994
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
67995
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
67996
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
67998
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
67999
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68000
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68007
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68008
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68009
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68013
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68017
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68018
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68019
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68026
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68027
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68028
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68030
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68031
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68032
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68034
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68035
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68036
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68038
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68039
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68040
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68042
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68043
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68044
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68046
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68047
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68048
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68050
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68051
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68052
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68054
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68055
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68056
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68058
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68059
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68060
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68062
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68063
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68064
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68071
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68072
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68073
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68077
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68081
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68082
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68083
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68090
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68091
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68092
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68094
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68095
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68096
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68098
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68099
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68100
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68102
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68103
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68104
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68106
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68107
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68108
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68110
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68111
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68112
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68114
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68115
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68116
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68118
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68119
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68120
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68122
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68123
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68124
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68126
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68127
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68128
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68135
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68136
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68137
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68141
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68145
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68146
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68147
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68154
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68155
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68156
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68158
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68159
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68160
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68162
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68163
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68164
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68166
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68167
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68168
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68170
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68171
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68172
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68174
|
+
[1m[36mSettings Load (0.5ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68175
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68176
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68178
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68179
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68180
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68182
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68183
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68184
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68186
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68187
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68188
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68190
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68191
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68192
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68199
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68200
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68201
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68208
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68209
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68210
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68211
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68212
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68213
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68214
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68215
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68216
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68217
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68218
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68219
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68220
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68221
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68222
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68223
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68224
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68225
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68226
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68227
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68228
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68229
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68230
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68231
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68232
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68233
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68234
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68235
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68236
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68237
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- []\n"], ["updated_at", 2017-03-19 16:40:35 UTC], ["id", 7]]
|
68238
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68244
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68245
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68246
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68253
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68254
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68255
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68256
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68257
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68258
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68259
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68260
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68261
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68262
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68263
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68264
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68265
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68266
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68267
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68268
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68269
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68270
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:40:35 UTC], ["id", 7]]
|
68271
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68272
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68273
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68274
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68275
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68276
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68277
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68278
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68279
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68280
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68281
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68282
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68283
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68289
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68290
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68291
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68295
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68299
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68300
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68301
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68307
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68308
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68315
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68316
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68317
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68319
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68320
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68321
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68323
|
+
[1m[36mSettings Load (0.7ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68324
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68325
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68327
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68328
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68329
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68331
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68332
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68333
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68335
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68336
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68337
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68339
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68340
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68341
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68343
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68344
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68345
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68347
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68348
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68349
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68351
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68352
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68353
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68360
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68361
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68368
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68369
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68370
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68371
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68372
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68373
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68374
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68375
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68376
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68377
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68378
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68379
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68380
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68381
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68382
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68383
|
+
[1m[36mSettings Load (0.5ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68384
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68385
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:40:36 UTC], ["id", 7]]
|
68386
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68387
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68388
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68389
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68390
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68391
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68392
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68393
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68394
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68395
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68396
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68397
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68398
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68404
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68405
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68409
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68413
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68414
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68415
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68419
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68423
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68424
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68425
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68429
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68433
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68434
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68435
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68439
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68443
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68444
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68445
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68451
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68452
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68456
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68460
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68461
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68462
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68466
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68470
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68471
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68472
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68478
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68479
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68483
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68487
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
|
68488
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68489
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68493
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68497
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68498
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68499
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68503
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68504
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68505
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68506
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68507
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68508
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68509
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68510
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68511
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68512
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68513
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68514
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68515
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68516
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68517
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68518
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68519
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68520
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68521
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68522
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68523
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68524
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68525
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68526
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68527
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68528
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68529
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68530
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68531
|
+
[1m[35m (0.4ms)[0m [1m[35mCREATE 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)[0m
|
68532
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
68533
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")[0m
|
68534
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
68535
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
68536
|
+
[1m[35m (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20140320182332)[0m
|
68537
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
68538
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
68539
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68540
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:41:16 UTC], ["updated_at", 2017-03-19 16:41:16 UTC]]
|
68541
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
68542
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
68543
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68544
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68545
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68546
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68547
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68548
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68549
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68550
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68551
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68552
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68553
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68554
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68555
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68556
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68557
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68558
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68559
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68560
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68561
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68562
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68563
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68564
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68565
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68566
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68567
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68568
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68569
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68570
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68571
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68572
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68573
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68574
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68575
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68576
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
68577
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68578
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68579
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68580
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68581
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68582
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68583
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68584
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
68585
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68586
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68590
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68591
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68592
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68596
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68601
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68602
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68603
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68607
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68611
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68612
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68613
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68620
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68621
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68622
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68626
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68630
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68631
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68632
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68639
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68640
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68641
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68645
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68649
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68650
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68651
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68657
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68658
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68662
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68666
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68667
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68668
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68674
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68675
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68676
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68680
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68684
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68685
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68686
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68693
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68694
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68695
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68697
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68698
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68699
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68701
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68702
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68703
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68705
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68706
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68707
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68709
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68710
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68711
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68713
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68714
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68715
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68717
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68718
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68719
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68721
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68722
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68723
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68725
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68726
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68727
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68729
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68730
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68731
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68738
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68739
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68740
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68744
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68748
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68749
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68750
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68757
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68758
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68759
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68761
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68762
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68763
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68765
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68766
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68767
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68769
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68770
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68771
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68773
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68774
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68775
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68777
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68778
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68779
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68781
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68782
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68783
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68785
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68786
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68787
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68789
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68790
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68791
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68793
|
+
[1m[36mSettings Load (0.5ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68794
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68795
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68802
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68803
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68804
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
68808
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68812
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68813
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68814
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68821
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68822
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68823
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68825
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68826
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68827
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68829
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68830
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68831
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68833
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68834
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68835
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68837
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68838
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68839
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68841
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68842
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68843
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68845
|
+
[1m[36mSettings Load (0.6ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68846
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68847
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68849
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68850
|
+
[1m[35m (0.7ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68851
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.8ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68853
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68854
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68855
|
+
[1m[35mSQL (0.9ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68857
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68858
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68859
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68866
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68867
|
+
[1m[36mCACHE (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68868
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68872
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68876
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68877
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68878
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68885
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68886
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68887
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68889
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68890
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68891
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68893
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68894
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68895
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68897
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68898
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68899
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68901
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68902
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68903
|
+
[1m[35mSQL (0.5ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68905
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68906
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68907
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68909
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68910
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68911
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68913
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68914
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68915
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68917
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68918
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68919
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68921
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68922
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68923
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68930
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68931
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68932
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
68936
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68940
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68941
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68942
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68949
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
68950
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68951
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68953
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
68954
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68955
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68957
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
68958
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68959
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68961
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
68962
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68963
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68965
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
68966
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68967
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68969
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
68970
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68971
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68973
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
68974
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68975
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68977
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
68978
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68979
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68981
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
68982
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68983
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
68985
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
68986
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
68987
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68994
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
68995
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
68996
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69000
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69004
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69005
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69006
|
+
[1m[36mCACHE (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69012
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69013
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69020
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69021
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69022
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69024
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69025
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69026
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69028
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69029
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69030
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69032
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69033
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69034
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69036
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69037
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69038
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69040
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69041
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69042
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69044
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69045
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69046
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69048
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69049
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69050
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69052
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69053
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69054
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69056
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69057
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69058
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69065
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69066
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69073
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69074
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69075
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69076
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69077
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69078
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69079
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69080
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69081
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69082
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69083
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69084
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69085
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69086
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69087
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69088
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69089
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69090
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
|
69091
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69092
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69093
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69094
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69095
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69096
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69097
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69098
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69099
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69100
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69101
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69102
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69103
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69109
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69110
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69114
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69118
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69119
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69120
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69127
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69128
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69129
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69131
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69132
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69133
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69135
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69136
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69137
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69139
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69140
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69141
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69143
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69144
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69145
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69147
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69148
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69149
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69151
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69152
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69153
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69155
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69156
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69157
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69159
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69160
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69161
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69163
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69164
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69165
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69172
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69173
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69174
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69181
|
+
[1m[36mSettings Load (0.3ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69182
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69183
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69184
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69185
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69186
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69187
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69188
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69189
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69190
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69191
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69192
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69193
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69194
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69195
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69196
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69197
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69198
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69199
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69200
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69201
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69202
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69203
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69204
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69205
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69206
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69207
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69208
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69209
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69210
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- []\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
|
69211
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69217
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69218
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69219
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69226
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69227
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69228
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69229
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69230
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69231
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69232
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69233
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69234
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69235
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69236
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69237
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69238
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69239
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69240
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69241
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69242
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69243
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:41:17 UTC], ["id", 7]]
|
69244
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69245
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69246
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69247
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69248
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69249
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69250
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69251
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69252
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69253
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69254
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69255
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69256
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69262
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69263
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69264
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
69268
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69272
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69273
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69274
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69280
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69281
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69285
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69289
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69290
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69291
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69295
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69299
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69300
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69301
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69305
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69309
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69310
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69311
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69315
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69319
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69320
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69321
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69325
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69329
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69330
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69331
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69337
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69338
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69342
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69346
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69347
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69348
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69352
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69356
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
|
69357
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69358
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
69362
|
+
[1m[35m (0.3ms)[0m [1m[35mCREATE 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)[0m
|
69363
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
69364
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")[0m
|
69365
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
69366
|
+
[1m[35m (0.0ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
69367
|
+
[1m[35m (0.0ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES (20140320182332)[0m
|
69368
|
+
[1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
69369
|
+
[1m[36mActiveRecord::InternalMetadata Load (0.2ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
69370
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
69371
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2017-03-19 16:41:44 UTC], ["updated_at", 2017-03-19 16:41:44 UTC]]
|
69372
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
69373
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69377
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69378
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69379
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69383
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69387
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69388
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69389
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69393
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69397
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69398
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69399
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69403
|
+
[1m[35m (0.4ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69407
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69408
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69409
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69413
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69417
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69418
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69419
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69425
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69426
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69430
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69434
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69435
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69436
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69440
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69445
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69446
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69447
|
+
[1m[36mCACHE (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69451
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69455
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69456
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69457
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69463
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69464
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69465
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69469
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69473
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69474
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69475
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69481
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69482
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69486
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69490
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69491
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69492
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69499
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69500
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69501
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69505
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69509
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69510
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69511
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69518
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69519
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69520
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69524
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69528
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69529
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69530
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69537
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69538
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69539
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69541
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69542
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69543
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69545
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69546
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69547
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69549
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69550
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69551
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69553
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69554
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69555
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69557
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69558
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69559
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69561
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69562
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69563
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69565
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69566
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69567
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69569
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69570
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69571
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69573
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69574
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69575
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69582
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69583
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69584
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69588
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69592
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69593
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69594
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (2.4ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69601
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69602
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69603
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69605
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69606
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69607
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69609
|
+
[1m[36mSettings Load (0.4ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69610
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69611
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69613
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69614
|
+
[1m[35m (0.3ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69615
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69617
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69618
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69619
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69621
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69622
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69623
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69625
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69626
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69627
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69629
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69630
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69631
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69633
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69634
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69635
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69637
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69638
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69639
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69646
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69647
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69648
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69652
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69656
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69657
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69658
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69665
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69666
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69667
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69669
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69670
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69671
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69673
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69674
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69675
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69677
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69678
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69679
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69681
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69682
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69683
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69685
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69686
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69687
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69689
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69690
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69691
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69693
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69694
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69695
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69697
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69698
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69699
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69701
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69702
|
+
[1m[35m (0.5ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69703
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69710
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69711
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69712
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69716
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69720
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69721
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69722
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69729
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69730
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69731
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69733
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69734
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69735
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69737
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69738
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69739
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69741
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69742
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69743
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69745
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69746
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69747
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69749
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69750
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69751
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69753
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69754
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69755
|
+
[1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69757
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69758
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69759
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69761
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69762
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69763
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69765
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69766
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69767
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69774
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69775
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69776
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69780
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69784
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69785
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69786
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69793
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69794
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69795
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69797
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69798
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69799
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69801
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69802
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69803
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69805
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69806
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69807
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69809
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69810
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69811
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69813
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69814
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69815
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69817
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69818
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69819
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69821
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69822
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69823
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69825
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69826
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69827
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69829
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69830
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69831
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69838
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69839
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69840
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69844
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69848
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69849
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69850
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69857
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69858
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69859
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69861
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69862
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69863
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69865
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69866
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69867
|
+
[1m[35mSQL (0.2ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69869
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69870
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69871
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69873
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69874
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69875
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69877
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69878
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69879
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69881
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69882
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69883
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69885
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69886
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69887
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69889
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69890
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69891
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69893
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69894
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69895
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69902
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69903
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69904
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69911
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69912
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69913
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69914
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69915
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69916
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69917
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69918
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69919
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69920
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69921
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69922
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69923
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69924
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69925
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69926
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69927
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69928
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69929
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69930
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69931
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69932
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69933
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69934
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69935
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69936
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69937
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69938
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69939
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69940
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- []\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
|
69941
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69947
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69948
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69949
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69956
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
69957
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69958
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69959
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
69960
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69961
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69962
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
69963
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69964
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69965
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
69966
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69967
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69968
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
69969
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69970
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69971
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
69972
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69973
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "---\n- :auto\n- :manual\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
|
69974
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69975
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
69976
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69977
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69978
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
69979
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69980
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69981
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
69982
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69983
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
69984
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
69985
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
69986
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69992
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
69993
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
69994
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
69998
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70002
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70003
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70004
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70010
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70011
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70018
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
70019
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70020
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70022
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
70023
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70024
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70026
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
70027
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70028
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70030
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
70031
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70032
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70034
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
70035
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70036
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70038
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
70039
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70040
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70042
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
70043
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70044
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70046
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
70047
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70048
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70050
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
70051
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70052
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70054
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
70055
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70056
|
+
[1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70063
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70064
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70071
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "angle"], ["LIMIT", 1]]
|
70072
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70073
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70074
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "check_something"], ["LIMIT", 1]]
|
70075
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70076
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70077
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "description"], ["LIMIT", 1]]
|
70078
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70079
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70080
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "limit"], ["LIMIT", 1]]
|
70081
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70082
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70083
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "locale"], ["LIMIT", 1]]
|
70084
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70085
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70086
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "mode"], ["LIMIT", 1]]
|
70087
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70088
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- :manual\n...\n"], ["updated_at", 2017-03-19 16:41:45 UTC], ["id", 7]]
|
70089
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70090
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_name"], ["LIMIT", 1]]
|
70091
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70092
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70093
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "project_status"], ["LIMIT", 1]]
|
70094
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70095
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70096
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "style"], ["LIMIT", 1]]
|
70097
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70098
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
70099
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT "settings".* FROM "settings" WHERE (thing_type is NULL and thing_id is NULL) AND "settings"."var" = ? ORDER BY "settings"."id" ASC LIMIT ?[0m [["var", "timer"], ["LIMIT", 1]]
|
70100
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
70101
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70107
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70108
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70112
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70116
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70117
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70118
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70124
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70125
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70129
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70130
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70131
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70132
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70133
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70134
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70135
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70136
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70137
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
70138
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70139
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70140
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70141
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70142
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70143
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70144
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70145
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70146
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70147
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70148
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70149
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70150
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70151
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70152
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70153
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70154
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70155
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70156
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
70157
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70161
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/admin
|
70162
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70163
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70167
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
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
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70171
|
+
Rendering /Users/accessd/projects/github/accessd/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/application
|
70172
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
70173
|
+
[1m[36mCACHE (0.0ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
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
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70177
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70178
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70179
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70180
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70181
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70182
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70183
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70184
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70185
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70186
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70187
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70188
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70189
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
70190
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
70191
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
70192
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|