rails-settings-ui 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +37 -4
- data/app/controllers/rails_settings_ui/settings_controller.rb +1 -1
- data/app/helpers/rails_settings_ui/settings_helper.rb +2 -2
- data/lib/rails-settings-ui.rb +8 -0
- data/lib/rails-settings-ui/version.rb +1 -1
- data/spec/dummy/log/test.log +754 -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/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 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9aab7beced8b9d4ad8c8d1db8a1f57d81237d458
|
4
|
+
data.tar.gz: 6939537a56542c9b585212946cb0994543794ea5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d71fc6f6a8e54ebed95eb632f5dbcd7818b9e2519e236e6e2f6b314158adb1264235805a2a76d75bcd0c77e7e81ba8c42b7e4ee093e76b041e49e8cd02505660
|
7
|
+
data.tar.gz: c761e102026d92125e7d05b9fa68672860a850345fd7334e3cb540ebef4b29b36db65a9dc394999a744ea1a204ed65c1e5ad8492e41cd34816d4cb100f7b73ff
|
data/README.md
CHANGED
@@ -4,8 +4,8 @@ Rails settings UI
|
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/rails-settings-ui.png)](http://badge.fury.io/rb/rails-settings-ui)
|
5
5
|
[![Build Status](https://travis-ci.org/accessd/rails-settings-ui.svg?branch=master)](https://travis-ci.org/accessd/rails-settings-ui)
|
6
6
|
|
7
|
-
A Rails Engine to manage your application settings. Includes validation. Compatible with Rails
|
8
|
-
It compatible with [rails-settings-cached](https://github.com/huacnlee/rails-settings-cached) gem.
|
7
|
+
A Rails Engine to manage your application settings. Includes validation. Compatible with Rails 5.
|
8
|
+
It compatible with [rails-settings-cached](https://github.com/huacnlee/rails-settings-cached) gem.
|
9
9
|
|
10
10
|
Preview:
|
11
11
|
|
@@ -104,6 +104,8 @@ Validations
|
|
104
104
|
|
105
105
|
To validation work is required the default settings in the proper format, eg:
|
106
106
|
|
107
|
+
For rails-settings-cached up to 0.5.8:
|
108
|
+
|
107
109
|
class Settings < RailsSettings::CachedSettings
|
108
110
|
defaults[:company_name] = "Company name"
|
109
111
|
defaults[:head_name] = "Head name"
|
@@ -112,6 +114,37 @@ To validation work is required the default settings in the proper format, eg:
|
|
112
114
|
defaults[:launch_mode] = [:auto, :manual]
|
113
115
|
end
|
114
116
|
|
117
|
+
For rails-settings-cached with version >= 0.6.0 default settings moved to YAML config file (config/app.yml), so
|
118
|
+
defaults should looks like:
|
119
|
+
|
120
|
+
```yaml
|
121
|
+
defaults: &defaults
|
122
|
+
rocket_name: "Foo"
|
123
|
+
limit: 123
|
124
|
+
launch_mode:
|
125
|
+
- auto
|
126
|
+
- manual
|
127
|
+
spaceports:
|
128
|
+
- plesetsk
|
129
|
+
- baikonur
|
130
|
+
style:
|
131
|
+
border_color: 'e0e0e0'
|
132
|
+
block_color: 'ffffff'
|
133
|
+
title:
|
134
|
+
font: "Tahoma"
|
135
|
+
size: "12"
|
136
|
+
color: '107821'
|
137
|
+
|
138
|
+
development:
|
139
|
+
<<: *defaults
|
140
|
+
|
141
|
+
test:
|
142
|
+
<<: *defaults
|
143
|
+
|
144
|
+
production:
|
145
|
+
<<: *defaults
|
146
|
+
```
|
147
|
+
|
115
148
|
Views
|
116
149
|
-------------
|
117
150
|
|
@@ -140,13 +173,13 @@ Alternatively, to have custom rules just for rails-setting-ui you can:
|
|
140
173
|
Rails.application.config.to_prepare do
|
141
174
|
RailsSettingsUi::ApplicationController.module_eval do
|
142
175
|
before_filter :check_settings_permissions
|
143
|
-
|
176
|
+
|
144
177
|
private
|
145
178
|
def check_settings_permissions
|
146
179
|
render status: 403 unless current_user && can_manage_settings?(current_user)
|
147
180
|
end
|
148
181
|
end
|
149
|
-
end
|
182
|
+
end
|
150
183
|
|
151
184
|
Issues
|
152
185
|
-------------
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module RailsSettingsUi::SettingsHelper
|
2
2
|
def setting_field(setting_name, setting_value, all_settings)
|
3
|
-
if !RailsSettingsUi.
|
3
|
+
if !RailsSettingsUi.default_settings.has_key?(setting_name.to_sym)
|
4
4
|
message_for_default_value_missing
|
5
5
|
elsif RailsSettingsUi.settings_displayed_as_select_tag.include?(setting_name.to_sym)
|
6
6
|
select_tag_field(setting_name, setting_value)
|
@@ -25,7 +25,7 @@ module RailsSettingsUi::SettingsHelper
|
|
25
25
|
|
26
26
|
def checkboxes_group_field(setting_name, all_settings)
|
27
27
|
field = ""
|
28
|
-
RailsSettingsUi.
|
28
|
+
RailsSettingsUi.default_settings[setting_name.to_sym].each do |value|
|
29
29
|
checked = all_settings[setting_name.to_s].map(&:to_s).include?(value.to_s)
|
30
30
|
field << check_box_tag("settings[#{setting_name.to_s}][#{value.to_s}]", nil, checked, style: "margin: 0 10px;")
|
31
31
|
field << label_tag("settings[#{setting_name.to_s}][#{value.to_s}]", I18n.t("settings.attributes.#{setting_name}.labels.#{value}", default: value.to_s), style: "display: inline-block;")
|
data/lib/rails-settings-ui.rb
CHANGED
@@ -33,5 +33,13 @@ module RailsSettingsUi
|
|
33
33
|
def settings_klass
|
34
34
|
settings_class.constantize
|
35
35
|
end
|
36
|
+
|
37
|
+
def default_settings
|
38
|
+
if Gem.loaded_specs['rails-settings-cached'].version.to_s >= '0.6.0'
|
39
|
+
RailsSettings::Default.instance.with_indifferent_access
|
40
|
+
else
|
41
|
+
RailsSettingsUi.settings_klass.defaults
|
42
|
+
end
|
43
|
+
end
|
36
44
|
end
|
37
45
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -46460,3 +46460,757 @@ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
|
46460
46460
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46461
46461
|
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46462
46462
|
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46463
|
+
[1m[35m (0.5ms)[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
|
46464
|
+
[1m[35m (0.2ms)[0m [1m[34mselect sqlite_version(*)[0m
|
46465
|
+
[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
|
46466
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
46467
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
46468
|
+
[1m[35m (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140320182332')[0m
|
46469
|
+
[1m[35m (0.8ms)[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
|
46470
|
+
[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]]
|
46471
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46472
|
+
[1m[35mSQL (0.6ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2017-01-29 16:04:29 UTC], ["updated_at", 2017-01-29 16:04:29 UTC]]
|
46473
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
46474
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46475
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46476
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46477
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46478
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46479
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46480
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46481
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
46482
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
46483
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
46484
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
46485
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46486
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46487
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46488
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46489
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46490
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46491
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46492
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46493
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46494
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46495
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46496
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46497
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46498
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46499
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46500
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46501
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46502
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46503
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46504
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46505
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46506
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46507
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46508
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46509
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46510
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46511
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46512
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46513
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46514
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46515
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46516
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46517
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46518
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46519
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46520
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46521
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46522
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46523
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46524
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46525
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46526
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46527
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46528
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46529
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46530
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46531
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46532
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46533
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
46534
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46535
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46536
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46537
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46538
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46539
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46540
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
46541
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46542
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46543
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46544
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46545
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46546
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46547
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46548
|
+
Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
|
46549
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46550
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46551
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46552
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46553
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46554
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46555
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46556
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46557
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46558
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46559
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46560
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46561
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:04:29 +0300
|
46562
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46563
|
+
Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
|
46564
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46565
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46566
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46567
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46568
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46569
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46570
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46571
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46572
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46573
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46574
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46575
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46576
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46577
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46578
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46579
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46580
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46581
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46582
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46583
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46584
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46585
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46586
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46587
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46588
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46589
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46590
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46591
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
46592
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
46593
|
+
[1m[35m (0.5ms)[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
|
46594
|
+
[1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
46595
|
+
[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
|
46596
|
+
[1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)[0m
|
46597
|
+
[1m[35m (0.1ms)[0m [1m[34mSELECT version FROM "schema_migrations"[0m
|
46598
|
+
[1m[35m (0.1ms)[0m [1m[32mINSERT INTO "schema_migrations" (version) VALUES ('20140320182332')[0m
|
46599
|
+
[1m[35m (0.3ms)[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
|
46600
|
+
[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]]
|
46601
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46602
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46603
|
+
[1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
46604
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46605
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:19 +0300
|
46606
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46607
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46608
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46609
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (19.5ms)
|
46610
|
+
Completed 200 OK in 34ms (Views: 28.3ms | ActiveRecord: 0.3ms)
|
46611
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46612
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46613
|
+
[1m[35m (0.3ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46614
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:19 +0300
|
46615
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46616
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46617
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46618
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.7ms)
|
46619
|
+
Completed 200 OK in 12ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
46620
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
46621
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46622
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:19 +0300
|
46623
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46624
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46625
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46626
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.2ms)
|
46627
|
+
Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.1ms)
|
46628
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:19 +0300
|
46629
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46630
|
+
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"}, "commit"=>"Save all"}
|
46631
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46632
|
+
[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]]
|
46633
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46634
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46635
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46636
|
+
[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]]
|
46637
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46638
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46639
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46640
|
+
[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]]
|
46641
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46642
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46643
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46644
|
+
[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]]
|
46645
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46646
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46647
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46648
|
+
[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]]
|
46649
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46650
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46651
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46652
|
+
[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]]
|
46653
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46654
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46655
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46656
|
+
[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]]
|
46657
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46658
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46659
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46660
|
+
[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]]
|
46661
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46662
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46663
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46664
|
+
[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]]
|
46665
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46666
|
+
[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-01-29 16:07:19 UTC], ["updated_at", 2017-01-29 16:07:19 UTC]]
|
46667
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46668
|
+
Redirected to http://www.example.com/settings/
|
46669
|
+
Completed 302 Found in 44ms (ActiveRecord: 3.1ms)
|
46670
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:19 +0300
|
46671
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46672
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46673
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46674
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.4ms)
|
46675
|
+
Completed 200 OK in 11ms (Views: 6.9ms | ActiveRecord: 0.1ms)
|
46676
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46677
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46678
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46679
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46680
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46681
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46682
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.4ms)
|
46683
|
+
Completed 200 OK in 9ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
46684
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46685
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46686
|
+
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"}, "commit"=>"Save all"}
|
46687
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46688
|
+
[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]]
|
46689
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46690
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46691
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46692
|
+
[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]]
|
46693
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46694
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46695
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46696
|
+
[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]]
|
46697
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46698
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46699
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46700
|
+
[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]]
|
46701
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46702
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46703
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46704
|
+
[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]]
|
46705
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46706
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46707
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46708
|
+
[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]]
|
46709
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46710
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46711
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46712
|
+
[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]]
|
46713
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46714
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46715
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46716
|
+
[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]]
|
46717
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46718
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46719
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46720
|
+
[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]]
|
46721
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46722
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46723
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46724
|
+
Redirected to http://www.example.com/settings/
|
46725
|
+
Completed 302 Found in 46ms (ActiveRecord: 3.1ms)
|
46726
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46727
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46728
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46729
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46730
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (3.2ms)
|
46731
|
+
Completed 200 OK in 11ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
46732
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46733
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46734
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46735
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46736
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46737
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46738
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.2ms)
|
46739
|
+
Completed 200 OK in 8ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
46740
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46741
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46742
|
+
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"}, "commit"=>"Save all"}
|
46743
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46744
|
+
[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]]
|
46745
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46746
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46747
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46748
|
+
[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]]
|
46749
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46750
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46751
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46752
|
+
[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]]
|
46753
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46754
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46755
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46756
|
+
[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]]
|
46757
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46758
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46759
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46760
|
+
[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]]
|
46761
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46762
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46763
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46764
|
+
[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", "description"], ["LIMIT", 1]]
|
46765
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46766
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46767
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46768
|
+
[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]]
|
46769
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46770
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46771
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46772
|
+
[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]]
|
46773
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46774
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46775
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46776
|
+
[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]]
|
46777
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46778
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46779
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46780
|
+
Redirected to http://www.example.com/settings/
|
46781
|
+
Completed 302 Found in 44ms (ActiveRecord: 3.3ms)
|
46782
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46783
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46784
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46785
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46786
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.1ms)
|
46787
|
+
Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.2ms)
|
46788
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46789
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46790
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46791
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46792
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46793
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46794
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.2ms)
|
46795
|
+
Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
46796
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46797
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46798
|
+
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"}, "commit"=>"Save all"}
|
46799
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46800
|
+
[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]]
|
46801
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46802
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46803
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46804
|
+
[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]]
|
46805
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46806
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46807
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46808
|
+
[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]]
|
46809
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46810
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46811
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46812
|
+
[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]]
|
46813
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46814
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46815
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46816
|
+
[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]]
|
46817
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46818
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46819
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46820
|
+
[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]]
|
46821
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46822
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46823
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46824
|
+
[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]]
|
46825
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46826
|
+
[1m[35mSQL (0.4ms)[0m [1m[32mINSERT INTO "settings" ("var", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["var", "mode"], ["value", "---\n- :auto\n- :manual\n"], ["created_at", 2017-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46827
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46828
|
+
[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]]
|
46829
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46830
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46831
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46832
|
+
[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]]
|
46833
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46834
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46835
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46836
|
+
Redirected to http://www.example.com/settings/
|
46837
|
+
Completed 302 Found in 44ms (ActiveRecord: 3.6ms)
|
46838
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46839
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46840
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46841
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46842
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.5ms)
|
46843
|
+
Completed 200 OK in 10ms (Views: 6.2ms | ActiveRecord: 0.2ms)
|
46844
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46845
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46846
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46847
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46848
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46849
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46850
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.3ms)
|
46851
|
+
Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
46852
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46853
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46854
|
+
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"}, "commit"=>"Save all"}
|
46855
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46856
|
+
[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]]
|
46857
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46858
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46859
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46860
|
+
[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]]
|
46861
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46862
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46863
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46864
|
+
[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]]
|
46865
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46866
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46867
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46868
|
+
[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]]
|
46869
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46870
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46871
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46872
|
+
[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]]
|
46873
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46874
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46875
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46876
|
+
[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]]
|
46877
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46878
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46879
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46880
|
+
[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]]
|
46881
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46882
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46883
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46884
|
+
[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]]
|
46885
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46886
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46887
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46888
|
+
[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]]
|
46889
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46890
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
46891
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46892
|
+
Redirected to http://www.example.com/settings/
|
46893
|
+
Completed 302 Found in 42ms (ActiveRecord: 2.9ms)
|
46894
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46895
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46896
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46897
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46898
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.3ms)
|
46899
|
+
Completed 200 OK in 11ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
46900
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46901
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46902
|
+
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.", "timer"=>"7200", "project_status"=>"finished"}, "commit"=>"Save all"}
|
46903
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46904
|
+
[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]]
|
46905
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46906
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46907
|
+
[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]]
|
46908
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46909
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46910
|
+
[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]]
|
46911
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46912
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46913
|
+
[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]]
|
46914
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46915
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46916
|
+
[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]]
|
46917
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46918
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46919
|
+
[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]]
|
46920
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46921
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46922
|
+
[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]]
|
46923
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46924
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46925
|
+
[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]]
|
46926
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46927
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46928
|
+
[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]]
|
46929
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46930
|
+
[1m[35mSQL (0.1ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- []\n"], ["updated_at", 2017-01-29 16:07:20 UTC], ["id", 7]]
|
46931
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46932
|
+
Redirected to http://www.example.com/settings/
|
46933
|
+
Completed 302 Found in 40ms (ActiveRecord: 2.6ms)
|
46934
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46935
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46936
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46937
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46938
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.4ms)
|
46939
|
+
Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.2ms)
|
46940
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46941
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46942
|
+
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"}, "commit"=>"Save all"}
|
46943
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46944
|
+
[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]]
|
46945
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46946
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46947
|
+
[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]]
|
46948
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46949
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46950
|
+
[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]]
|
46951
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46952
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46953
|
+
[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]]
|
46954
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46955
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46956
|
+
[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]]
|
46957
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46958
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46959
|
+
[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]]
|
46960
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46961
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46962
|
+
[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", "mode"], ["LIMIT", 1]]
|
46963
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46964
|
+
[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-01-29 16:07:20 UTC], ["id", 7]]
|
46965
|
+
[1m[35m (0.2ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46966
|
+
[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]]
|
46967
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46968
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46969
|
+
[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]]
|
46970
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
46971
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
46972
|
+
Redirected to http://www.example.com/settings/
|
46973
|
+
Completed 302 Found in 41ms (ActiveRecord: 2.8ms)
|
46974
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46975
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46976
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46977
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46978
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.6ms)
|
46979
|
+
Completed 200 OK in 10ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
46980
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
46981
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
46982
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46983
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46984
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46985
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46986
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.3ms)
|
46987
|
+
Completed 200 OK in 9ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
46988
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46989
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
46990
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46991
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
46992
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.4ms)
|
46993
|
+
Completed 200 OK in 9ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
46994
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
46995
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
46996
|
+
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"}, "commit"=>"Save all"}
|
46997
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
46998
|
+
[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]]
|
46999
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47000
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47001
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47002
|
+
[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]]
|
47003
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47004
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47005
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47006
|
+
[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]]
|
47007
|
+
[1m[35m (0.2ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47008
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47009
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47010
|
+
[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]]
|
47011
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47012
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47013
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47014
|
+
[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]]
|
47015
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47016
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47017
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47018
|
+
[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]]
|
47019
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47020
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47021
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47022
|
+
[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]]
|
47023
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47024
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47025
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47026
|
+
[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]]
|
47027
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47028
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47029
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47030
|
+
[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]]
|
47031
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47032
|
+
[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-01-29 16:07:20 UTC], ["updated_at", 2017-01-29 16:07:20 UTC]]
|
47033
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47034
|
+
Redirected to http://www.example.com/settings/
|
47035
|
+
Completed 302 Found in 45ms (ActiveRecord: 3.4ms)
|
47036
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47037
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47038
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47039
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47040
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.9ms)
|
47041
|
+
Completed 200 OK in 11ms (Views: 6.6ms | ActiveRecord: 0.2ms)
|
47042
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47043
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
47044
|
+
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", "timer"=>"7200", "project_status"=>"finished"}, "commit"=>"Save all"}
|
47045
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47046
|
+
[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]]
|
47047
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47048
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47049
|
+
[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]]
|
47050
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47051
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47052
|
+
[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]]
|
47053
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47054
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47055
|
+
[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]]
|
47056
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47057
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47058
|
+
[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]]
|
47059
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47060
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47061
|
+
[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]]
|
47062
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47063
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47064
|
+
[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]]
|
47065
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47066
|
+
[1m[35mSQL (0.3ms)[0m [1m[33mUPDATE "settings" SET "value" = ?, "updated_at" = ? WHERE "settings"."id" = ?[0m [["value", "--- :manual\n...\n"], ["updated_at", 2017-01-29 16:07:20 UTC], ["id", 7]]
|
47067
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47068
|
+
[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]]
|
47069
|
+
[1m[35m (0.0ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47070
|
+
[1m[35m (0.1ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47071
|
+
[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]]
|
47072
|
+
[1m[35m (0.1ms)[0m [1m[35mSAVEPOINT active_record_1[0m
|
47073
|
+
[1m[35m (0.0ms)[0m [1m[35mRELEASE SAVEPOINT active_record_1[0m
|
47074
|
+
Redirected to http://www.example.com/settings/
|
47075
|
+
Completed 302 Found in 42ms (ActiveRecord: 2.7ms)
|
47076
|
+
Started GET "/settings/" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47077
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47078
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47079
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47080
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (3.2ms)
|
47081
|
+
Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.2ms)
|
47082
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47083
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47084
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47085
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47086
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47087
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47088
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (5.4ms)
|
47089
|
+
Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.1ms)
|
47090
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47091
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47092
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47093
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47094
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (4.2ms)
|
47095
|
+
Completed 200 OK in 16ms (Views: 11.5ms | ActiveRecord: 0.1ms)
|
47096
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47097
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47098
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47099
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47100
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47101
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47102
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (7.2ms)
|
47103
|
+
Completed 200 OK in 20ms (Views: 14.5ms | ActiveRecord: 0.2ms)
|
47104
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47105
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47106
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47107
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47108
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47109
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47110
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (5.1ms)
|
47111
|
+
Completed 200 OK in 18ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
47112
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47113
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47114
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47115
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47116
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47117
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47118
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (5.2ms)
|
47119
|
+
Completed 200 OK in 16ms (Views: 13.3ms | ActiveRecord: 0.1ms)
|
47120
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47121
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47122
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47123
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47124
|
+
[1m[36mSettings Load (0.2ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47125
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47126
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.7ms)
|
47127
|
+
Completed 200 OK in 10ms (Views: 6.6ms | ActiveRecord: 0.2ms)
|
47128
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47129
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47130
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47131
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47132
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47133
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47134
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (3.0ms)
|
47135
|
+
Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
47136
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47137
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47138
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47139
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47140
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.6ms)
|
47141
|
+
Completed 200 OK in 10ms (Views: 8.1ms | ActiveRecord: 0.1ms)
|
47142
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47143
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47144
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47145
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47146
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47147
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47148
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.5ms)
|
47149
|
+
Completed 200 OK in 10ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
47150
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47151
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
47152
|
+
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"}, "commit"=>"Save all"}
|
47153
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47154
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47155
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.4ms)
|
47156
|
+
Completed 200 OK in 16ms (Views: 8.2ms | ActiveRecord: 0.1ms)
|
47157
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47158
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47159
|
+
Started GET "/settings" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47160
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
47161
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47162
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47163
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.6ms)
|
47164
|
+
Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
47165
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2017-01-29 19:07:20 +0300
|
47166
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
47167
|
+
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"}, "commit"=>"Save all"}
|
47168
|
+
[1m[36mSettings Load (0.1ms)[0m [1m[34mSELECT var, value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
47169
|
+
Rendering /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application
|
47170
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.erb within layouts/rails_settings_ui/application (2.1ms)
|
47171
|
+
Completed 200 OK in 14ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
47172
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47173
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47174
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47175
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47176
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47177
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47178
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47179
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47180
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47181
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47182
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47183
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47184
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47185
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47186
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47187
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47188
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47189
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47190
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47191
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47192
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47193
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47194
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47195
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47196
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47197
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47198
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47199
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47200
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
47201
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47202
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47203
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47204
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47205
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47206
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47207
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47208
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
47209
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47210
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47211
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47212
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47213
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
47214
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
47215
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
47216
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@value
|
1
|
+
o: ActiveSupport::Cache::Entry:@value:manual:@created_atf1485706040.5788832:@expires_in0
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@valuef0.5:@created_atf
|
1
|
+
o: ActiveSupport::Cache::Entry:@valuef0.5:@created_atf1485706040.562813:@expires_in0
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@valuei�:@created_atf
|
1
|
+
o: ActiveSupport::Cache::Entry:@valuei�:@created_atf1485706040.559124:@expires_in0
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@valuei :@created_atf
|
1
|
+
o: ActiveSupport::Cache::Entry:@valuei :@created_atf1485706040.582371:@expires_in0
|
@@ -1,2 +1,2 @@
|
|
1
1
|
o: ActiveSupport::Cache::Entry:@valueI"
|
2
|
-
apple:ET:@created_atf
|
2
|
+
apple:ET:@created_atf1485706039.8870661:@expires_in0
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@valueI"�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.:ET:@created_atf
|
1
|
+
o: ActiveSupport::Cache::Entry:@valueI"�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.:ET:@created_atf1485706040.573457:@expires_in0
|
@@ -1,2 +1,2 @@
|
|
1
1
|
o: ActiveSupport::Cache::Entry:@valueI"
|
2
|
-
Dummy:ET:@created_atf
|
2
|
+
Dummy:ET:@created_atf1485706040.556405:@expires_in0
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@value:
|
1
|
+
o: ActiveSupport::Cache::Entry:@value:
|
@@ -1 +1 @@
|
|
1
|
-
o: ActiveSupport::Cache::Entry:@valueT:@created_atf
|
1
|
+
o: ActiveSupport::Cache::Entry:@valueT:@created_atf1485706040.569942:@expires_in0
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-settings-ui
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrey Morskov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|