rails-settings-ui 0.1.1 → 0.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 +1 -0
- data/app/assets/stylesheets/rails_settings_ui/application.css.scss +1 -1
- data/app/controllers/rails_settings_ui/settings_controller.rb +3 -3
- data/app/helpers/rails_settings_ui/settings_helper.rb +8 -2
- data/app/views/rails_settings_ui/settings/index.html.haml +2 -2
- data/config/locales/en.yml +2 -1
- data/config/locales/ru.yml +2 -1
- data/lib/rails-settings-ui.rb +7 -0
- data/lib/rails-settings-ui/type_converter.rb +2 -2
- data/lib/rails-settings-ui/version.rb +1 -1
- data/spec/dummy/log/test.log +1421 -0
- data/spec/dummy/tmp/cache/702/EF0/settings%3Acompany +2 -0
- data/spec/dummy/tmp/capybara/capybara-201407142218044166461911.html +101 -0
- data/spec/features/settings_spec.rb +29 -7
- data/spec/lib/rails-settings-ui/type_converter_spec.rb +1 -1
- data/spec/lib/rails-settings-ui/value_types/base_spec.rb +3 -3
- data/spec/lib/rails-settings-ui/value_types/fixnum_spec.rb +1 -1
- data/spec/lib/rails-settings-ui/value_types/float_spec.rb +1 -1
- data/spec/lib/rails-settings-ui/value_types/hash_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -2
- metadata +14 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 90c7ffb63f5e9ee0def22f45aa38b755bec28930
|
4
|
+
data.tar.gz: ea74f8a93390dcbab33f7d108047b25282bf53e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c1e830dbc30b20a8be38a7ed1b70b2ebb0b552f0691c0b25bbcde815e31a80e38a6291edf3819cf218c2588e83cbbc9699536cee9a210fef3954d5728dea24d
|
7
|
+
data.tar.gz: 9d61d1f8b4c55469b8869f3f2f8b023261bbc25ca72090210b3988572874045d141c03ddf744296de3e7095436fef0e20c543dd3d4d2f70132875cff8afffdf1
|
data/README.md
CHANGED
@@ -34,6 +34,7 @@ In config/initializers/rails_settings_ui.rb
|
|
34
34
|
|
35
35
|
RailsSettingsUi.setup do |config|
|
36
36
|
config.ignored_settings = [:company_name] # Settings not displayed in the interface
|
37
|
+
config.settings_class = "MySettings" # Customize settings class name
|
37
38
|
end
|
38
39
|
|
39
40
|
Routing
|
@@ -9,7 +9,7 @@ class RailsSettingsUi::SettingsController < RailsSettingsUi::ApplicationControll
|
|
9
9
|
if @casted_settings[:errors].any?
|
10
10
|
render :index
|
11
11
|
else
|
12
|
-
@casted_settings.map { |setting|
|
12
|
+
@casted_settings.map { |setting| RailsSettingsUi.settings_klass[setting[0]] = setting[1] if setting[0] != "errors" }
|
13
13
|
redirect_to [:settings]
|
14
14
|
end
|
15
15
|
end
|
@@ -17,7 +17,7 @@ class RailsSettingsUi::SettingsController < RailsSettingsUi::ApplicationControll
|
|
17
17
|
private
|
18
18
|
|
19
19
|
def collection
|
20
|
-
all_settings =
|
20
|
+
all_settings = RailsSettingsUi.settings_klass.defaults.merge(RailsSettingsUi.settings_klass.get_all)
|
21
21
|
all_settings_without_ignored = all_settings.reject{ |name, description| RailsSettingsUi.ignored_settings.include?(name.to_sym) }
|
22
22
|
@settings = Hash[all_settings_without_ignored]
|
23
23
|
end
|
@@ -25,4 +25,4 @@ class RailsSettingsUi::SettingsController < RailsSettingsUi::ApplicationControll
|
|
25
25
|
def cast_settings_params
|
26
26
|
@casted_settings = RailsSettingsUi::TypeConverter.cast(params["settings"])
|
27
27
|
end
|
28
|
-
end
|
28
|
+
end
|
@@ -1,6 +1,8 @@
|
|
1
1
|
module RailsSettingsUi::SettingsHelper
|
2
2
|
def setting_field(setting_name, setting_value, all_settings)
|
3
|
-
if RailsSettingsUi.
|
3
|
+
if !RailsSettingsUi.settings_klass.defaults.has_key?(setting_name.to_sym)
|
4
|
+
message_for_default_value_missing
|
5
|
+
elsif RailsSettingsUi.settings_displayed_as_select_tag.include?(setting_name.to_sym)
|
4
6
|
select_tag_field(setting_name, setting_value)
|
5
7
|
elsif setting_value.is_a?(Array)
|
6
8
|
checkboxes_group_field(setting_name, all_settings)
|
@@ -20,7 +22,7 @@ module RailsSettingsUi::SettingsHelper
|
|
20
22
|
|
21
23
|
def checkboxes_group_field(setting_name, all_settings)
|
22
24
|
field = ""
|
23
|
-
|
25
|
+
RailsSettingsUi.settings_klass.defaults[setting_name.to_sym].each do |value|
|
24
26
|
field << check_box_tag("settings[#{setting_name.to_s}][#{value.to_s}]", nil, all_settings[setting_name.to_s].include?(value), style: "margin: 0 10px;")
|
25
27
|
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;")
|
26
28
|
end
|
@@ -41,4 +43,8 @@ module RailsSettingsUi::SettingsHelper
|
|
41
43
|
help_block_content = I18n.t("settings.attributes.#{setting_name}.help_block", default: '')
|
42
44
|
field + (help_block_content.presence && content_tag(:span, help_block_content, class: 'help-block'))
|
43
45
|
end
|
46
|
+
|
47
|
+
def message_for_default_value_missing
|
48
|
+
content_tag(:span, I18n.t("settings.errors.default_missing"), class: "label label-important")
|
49
|
+
end
|
44
50
|
end
|
@@ -13,9 +13,9 @@
|
|
13
13
|
%tbody
|
14
14
|
- @settings.each do |name, value|
|
15
15
|
- if name != :errors
|
16
|
-
%tr
|
16
|
+
%tr{data: {name: name}}
|
17
17
|
%td= I18n.t("settings.attributes.#{name}.name")
|
18
|
-
%td
|
18
|
+
%td.setting-value
|
19
19
|
- setting_with_error = @casted_settings && @casted_settings[:errors].include?(name)
|
20
20
|
%div{class: "control-group #{ setting_with_error ? 'error' : ''}"}
|
21
21
|
= setting_field(name, value, @settings)
|
data/config/locales/en.yml
CHANGED
data/config/locales/ru.yml
CHANGED
data/lib/rails-settings-ui.rb
CHANGED
@@ -17,6 +17,9 @@ module RailsSettingsUi
|
|
17
17
|
mattr_accessor :settings_displayed_as_select_tag
|
18
18
|
self.settings_displayed_as_select_tag = []
|
19
19
|
|
20
|
+
mattr_accessor :settings_class
|
21
|
+
self.settings_class = "Settings"
|
22
|
+
|
20
23
|
class << self
|
21
24
|
def inline_main_app_routes!
|
22
25
|
::RailsSettingsUi::ApplicationController.helper ::RailsSettingsUi::MainAppRouteDelegator
|
@@ -25,5 +28,9 @@ module RailsSettingsUi
|
|
25
28
|
def setup
|
26
29
|
yield self
|
27
30
|
end
|
31
|
+
|
32
|
+
def settings_klass
|
33
|
+
settings_class.constantize
|
34
|
+
end
|
28
35
|
end
|
29
36
|
end
|
@@ -37,7 +37,7 @@ module RailsSettingsUi
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def self.setting_value_type(name, value)
|
40
|
-
default_setting_value_type =
|
40
|
+
default_setting_value_type = RailsSettingsUi.settings_klass.defaults[name.to_sym].class
|
41
41
|
unless VALUE_TYPES_MAP.keys.include?(default_setting_value_type)
|
42
42
|
raise RailsSettingsUi::UnknownDefaultValueType, "Unknown default value type #{default_setting_value_type}"
|
43
43
|
end
|
@@ -47,7 +47,7 @@ module RailsSettingsUi
|
|
47
47
|
end
|
48
48
|
|
49
49
|
def self.set_non_presented_boolean_settings_to_false(settings)
|
50
|
-
|
50
|
+
RailsSettingsUi.settings_klass.defaults.each do |name, value|
|
51
51
|
if !settings[name.to_sym].present? && [TrueClass, FalseClass].include?(value.class)
|
52
52
|
settings[name.to_sym] = false
|
53
53
|
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -5787,3 +5787,1424 @@ Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
|
5787
5787
|
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
5788
5788
|
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
5789
5789
|
[1m[35m (0.2ms)[0m rollback transaction
|
5790
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
5791
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
5792
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5793
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5794
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
5795
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
5796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5797
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5798
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5799
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5801
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5803
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5804
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5805
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5806
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5807
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5808
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5809
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5810
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.5ms)
|
5811
|
+
Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.3ms)
|
5812
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5813
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
5814
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
5815
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5816
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
5817
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
|
5818
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5819
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5820
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5821
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5822
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5823
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
5824
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
5825
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5826
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
5827
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
5828
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5829
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
5830
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
5831
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5832
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5833
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5834
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5835
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5836
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
5837
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
5838
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5839
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5840
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5841
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5842
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5843
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.1ms)
|
5844
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
5845
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5847
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5848
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5849
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5850
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
5851
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
5852
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5853
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5854
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5855
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5856
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5857
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
5858
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
5859
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5860
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5861
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5862
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5863
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5864
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
5865
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
5866
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5867
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5868
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 19:50:36 +0400
|
5869
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5870
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5871
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
|
5872
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
5873
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5874
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5875
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5877
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5878
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5879
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5880
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5881
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5882
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5883
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5884
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5885
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5886
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5887
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5888
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5889
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5890
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5891
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5892
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5893
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5894
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5895
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5896
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5897
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5898
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
5899
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
5900
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5901
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5902
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
5903
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
5904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5905
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
5906
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5907
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5908
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5909
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5910
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5911
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5913
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5914
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5915
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5916
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5917
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5918
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5919
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5920
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5921
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5923
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5924
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5925
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5927
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5928
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5929
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5930
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5931
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5932
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5933
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5934
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5935
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5936
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5937
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5939
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5940
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5941
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5942
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5943
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5944
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5945
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5946
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5947
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5948
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5949
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5951
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5952
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5953
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5954
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
5955
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
5956
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5957
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5958
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
5959
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
5960
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5961
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5962
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5963
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5964
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5965
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5967
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5968
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5969
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5970
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5971
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5972
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5973
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5974
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5975
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5976
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5977
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5979
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5980
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5981
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5982
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5983
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
5985
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:32 +0400
|
5986
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
5987
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
5988
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.9ms)
|
5989
|
+
Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 0.6ms)
|
5990
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
5991
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
5992
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
5993
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
5994
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (26.5ms)
|
5995
|
+
Completed 200 OK in 29ms (Views: 27.9ms | ActiveRecord: 0.1ms)
|
5996
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5997
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5998
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
5999
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6000
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6001
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
|
6002
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
6003
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6004
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6005
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6006
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6007
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6008
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
6009
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6010
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6011
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6012
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6013
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6014
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6015
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6016
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6017
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6018
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6019
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6020
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6021
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.6ms)
|
6022
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
6023
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6024
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6025
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6026
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6027
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6028
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.7ms)
|
6029
|
+
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.2ms)
|
6030
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6031
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6032
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6033
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6034
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6035
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
|
6036
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
6037
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6038
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6039
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6040
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6041
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6042
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6043
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6044
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6045
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6046
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:04:33 +0400
|
6047
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6048
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6049
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6050
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6051
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6052
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6053
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6054
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6055
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6057
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6058
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6059
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6060
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6061
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6062
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6063
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6064
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6065
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6066
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6067
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6068
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
6069
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6070
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
6071
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6072
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6073
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6074
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6075
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6076
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6077
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6078
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6079
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6081
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6082
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6083
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6084
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6085
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6086
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6087
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6089
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6090
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6092
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6093
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6095
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6096
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6097
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6098
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6099
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:04 +0400
|
6100
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6101
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6102
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.5ms)
|
6103
|
+
Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.4ms)
|
6104
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6105
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6106
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:04 +0400
|
6107
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6108
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6109
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6110
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6111
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6112
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6113
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6114
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6115
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6116
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
6117
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
6118
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
6119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6120
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6121
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6122
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6123
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
6124
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
6125
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6127
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6128
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6129
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6130
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6131
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
6132
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6133
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6134
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6135
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6136
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6137
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6138
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6139
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6140
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6141
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6142
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6143
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
|
6144
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
6145
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6146
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6147
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6148
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6149
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6150
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.1ms)
|
6151
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.1ms)
|
6152
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6153
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6154
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6155
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6156
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
6157
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
6158
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6159
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6160
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:05:05 +0400
|
6161
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6162
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6163
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.4ms)
|
6164
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6165
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6167
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6168
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6169
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6170
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6171
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6172
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6173
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6174
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6175
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6176
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6177
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6178
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6179
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6180
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6181
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6182
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6183
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6185
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6186
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6187
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6188
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6189
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6190
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6191
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6192
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6193
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6194
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6195
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:37 +0400
|
6196
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6197
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6198
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (9.6ms)
|
6199
|
+
Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.4ms)
|
6200
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6201
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6202
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:37 +0400
|
6203
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6204
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6205
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (25.4ms)
|
6206
|
+
Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.1ms)
|
6207
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6209
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:37 +0400
|
6210
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6211
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6212
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6213
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6214
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6215
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6216
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:37 +0400
|
6217
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6218
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6219
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6220
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6221
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6223
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:37 +0400
|
6224
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6225
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6226
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6227
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
6228
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6229
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6230
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:38 +0400
|
6231
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6232
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6233
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.3ms)
|
6234
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
6235
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6237
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:38 +0400
|
6238
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6239
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6240
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6241
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
6242
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:13:38 +0400
|
6243
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6244
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6245
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6246
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6247
|
+
Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
6248
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6249
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6250
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-13 20:13:38 +0400
|
6251
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6252
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6253
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
6254
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6255
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-13 20:13:38 +0400
|
6256
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6257
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6258
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6259
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6260
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6267
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6273
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6275
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6276
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6278
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6279
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6280
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6281
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6282
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6283
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6285
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6287
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6288
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6289
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6290
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6291
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6294
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6295
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6296
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6297
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6298
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6299
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6301
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6302
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6303
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6304
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6305
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6308
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6309
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6310
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6311
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6312
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6313
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6314
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.0ms)
|
6315
|
+
Completed 200 OK in 71ms (Views: 69.0ms | ActiveRecord: 0.4ms)
|
6316
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6317
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6318
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6319
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6320
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6321
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6322
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6323
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6324
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6325
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6326
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6327
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6328
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6329
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
6330
|
+
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
6331
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6332
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6333
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6334
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6335
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6336
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6337
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6338
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6339
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6340
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6341
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6342
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.2ms)
|
6343
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
6344
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6345
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6346
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6347
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6348
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6349
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6350
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6351
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6352
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6353
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6354
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6355
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6356
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6357
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6358
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6359
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6360
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6361
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6362
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6363
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6364
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6365
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6367
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6368
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6369
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6370
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6371
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6372
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6373
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6374
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:13:55 +0400
|
6375
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6376
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6377
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6378
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6379
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6381
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6383
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6384
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6385
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6386
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6387
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6388
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6389
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6390
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6391
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6392
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6393
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6394
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6395
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6396
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6397
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6399
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6401
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6403
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6405
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6406
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6407
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6409
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6410
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6411
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6412
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6413
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6414
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6415
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6417
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6419
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6421
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6423
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6424
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6425
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:35 +0400
|
6426
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6427
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6428
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (8.9ms)
|
6429
|
+
Completed 200 OK in 52ms (Views: 48.9ms | ActiveRecord: 0.6ms)
|
6430
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6431
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6432
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6433
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6434
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6435
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.2ms)
|
6436
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
6437
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6438
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6439
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6440
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6441
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6442
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6443
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6444
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6446
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6447
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6448
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6449
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6450
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6451
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6453
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6454
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6455
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6456
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6457
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6458
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6459
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6460
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6461
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6462
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6463
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
|
6464
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
6465
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6466
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6467
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6468
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6469
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6470
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.6ms)
|
6471
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
6472
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6473
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6474
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6475
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6476
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6477
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6478
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6479
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6480
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6481
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6482
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6483
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.2ms)
|
6484
|
+
Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.2ms)
|
6485
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6486
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6487
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6488
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6489
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6490
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6491
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6492
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:14:36 +0400
|
6493
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6494
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6495
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6496
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6497
|
+
Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6498
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6499
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6500
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6501
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6502
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
6503
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6504
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6505
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6506
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6507
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6508
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6509
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6510
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6511
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6512
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6513
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (12.2ms)
|
6514
|
+
Completed 200 OK in 29ms (Views: 26.1ms | ActiveRecord: 0.3ms)
|
6515
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6516
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6517
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6518
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6519
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6520
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6521
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6522
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6524
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6525
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6526
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6527
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6528
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6529
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6530
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6531
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6532
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6533
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6534
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.6ms)
|
6535
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.1ms)
|
6536
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6537
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6538
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6539
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6540
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6541
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
|
6542
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
6543
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6544
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6545
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6546
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6547
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6548
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6549
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6550
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6551
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6552
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6553
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6554
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
|
6555
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
6556
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6557
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6558
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6559
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6560
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6561
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6562
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6563
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6564
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6565
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6566
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6567
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6568
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6569
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6570
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6571
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
6572
|
+
[1m[35mSQL (4.9ms)[0m INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", Mon, 14 Jul 2014 18:16:21 UTC +00:00], ["updated_at", Mon, 14 Jul 2014 18:16:21 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
6573
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
6574
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6575
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6576
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6577
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.3ms)
|
6578
|
+
Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
6579
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
6580
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6581
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:16:21 +0400
|
6582
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6583
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6584
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
|
6585
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
6586
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6588
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6589
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6590
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6591
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6592
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6593
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6594
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6595
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6596
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6597
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6598
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6599
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6600
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6601
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6602
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6604
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6605
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6606
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6607
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6608
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6610
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6611
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6612
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6614
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6615
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6616
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6617
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6618
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6620
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6621
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6622
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6623
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6624
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6625
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6626
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6627
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6628
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6629
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6630
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6631
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6632
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6633
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6634
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6635
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6636
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6637
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6638
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6639
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6640
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6641
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6642
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6643
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6644
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6645
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6648
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6649
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6650
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6651
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6652
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6653
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6654
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6655
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6656
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6657
|
+
[1m[36mSQL (2.6ms)[0m [1mINSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Jul 2014 18:18:04 UTC +00:00], ["updated_at", Mon, 14 Jul 2014 18:18:04 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
6658
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6659
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6660
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6661
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6662
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (7.9ms)
|
6663
|
+
Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.1ms)
|
6664
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6665
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6666
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6667
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6668
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6669
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6670
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6671
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6672
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6673
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6674
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6675
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.8ms)
|
6676
|
+
Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.1ms)
|
6677
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6679
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6680
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6681
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6682
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6683
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6684
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6685
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6686
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6687
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6688
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.7ms)
|
6689
|
+
Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.2ms)
|
6690
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6692
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6693
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6694
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6695
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.5ms)
|
6696
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.1ms)
|
6697
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6698
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6699
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6700
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6701
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6702
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.9ms)
|
6703
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
6704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6706
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6707
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6708
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6709
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
6710
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.1ms)
|
6711
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6712
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6713
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:04 +0400
|
6714
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6715
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6716
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
|
6717
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
6718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6719
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6720
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:05 +0400
|
6721
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6722
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6723
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6724
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.1ms)
|
6725
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6726
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6727
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:18:05 +0400
|
6728
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6729
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6730
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (2.7ms)
|
6731
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
6732
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6733
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6734
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6736
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6738
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6739
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6740
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6741
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6742
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6743
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6744
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6745
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6746
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6747
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6748
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6749
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (15.5ms)
|
6750
|
+
Completed 200 OK in 36ms (Views: 32.5ms | ActiveRecord: 0.3ms)
|
6751
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6752
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6753
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6754
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6755
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
|
6756
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
6757
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6759
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6760
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6761
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6762
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
6763
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
6764
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6765
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6766
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6767
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6768
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
|
6769
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
6770
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6771
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6772
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6773
|
+
[1m[36mSQL (4.0ms)[0m [1mINSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Jul 2014 18:27:48 UTC +00:00], ["updated_at", Mon, 14 Jul 2014 18:27:48 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
6774
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6775
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6776
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6777
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6778
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.4ms)
|
6779
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
6780
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6781
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6782
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6783
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6784
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6785
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
6786
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
|
6787
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6788
|
+
[1m[35m (0.2ms)[0m begin transaction
|
6789
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6790
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6791
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6792
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.4ms)
|
6793
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
6794
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6795
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6796
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6797
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6798
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6799
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
|
6800
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
6801
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6802
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6803
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6804
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6805
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6806
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.7ms)
|
6807
|
+
Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.1ms)
|
6808
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6809
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6810
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6811
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6812
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6813
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.6ms)
|
6814
|
+
Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.2ms)
|
6815
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6816
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6817
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:27:48 +0400
|
6818
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6819
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6820
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.6ms)
|
6821
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
6822
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6823
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6824
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6825
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6826
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6827
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6828
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6829
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6830
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6831
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6832
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6833
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6834
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6836
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6837
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6838
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6840
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6841
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6842
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6843
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6844
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6846
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6847
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6848
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6849
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6850
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6851
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6852
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6853
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6854
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6855
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6856
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6857
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6858
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6859
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6860
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6861
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6862
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6863
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6864
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6866
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6867
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6868
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6870
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6871
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6872
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6874
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6876
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6877
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6878
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6879
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6881
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6882
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6884
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6885
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6886
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6887
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (10.0ms)
|
6888
|
+
Completed 200 OK in 31ms (Views: 27.3ms | ActiveRecord: 0.4ms)
|
6889
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6890
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6891
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6892
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6893
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6894
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.8ms)
|
6895
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
6896
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6897
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6898
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6899
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6900
|
+
[1m[35mSettings Load (0.2ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6901
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.0ms)
|
6902
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.2ms)
|
6903
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6904
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6905
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6906
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6907
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6908
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.1ms)
|
6909
|
+
Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
6910
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
6911
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6912
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6913
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6914
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6915
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.6ms)
|
6916
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
6917
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6918
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6919
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6920
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6921
|
+
[1m[36mSettings Load (0.2ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6922
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.7ms)
|
6923
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.2ms)
|
6924
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6925
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6926
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6927
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6928
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.8ms)
|
6929
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
6930
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6931
|
+
[1m[35m (0.1ms)[0m begin transaction
|
6932
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6933
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6934
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6935
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (4.6ms)
|
6936
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
6937
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6938
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6939
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
6940
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6941
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
6942
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
6943
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
6944
|
+
[1m[35m (0.0ms)[0m begin transaction
|
6945
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:04 +0400
|
6946
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6947
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6948
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
|
6949
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
6950
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6951
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6952
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6953
|
+
[1m[36mSQL (3.7ms)[0m [1mINSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 14 Jul 2014 18:28:05 UTC +00:00], ["updated_at", Mon, 14 Jul 2014 18:28:05 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
6954
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6955
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-14 22:28:05 +0400
|
6956
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6957
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6958
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (27.3ms)
|
6959
|
+
Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.1ms)
|
6960
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6962
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6963
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6964
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6965
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6966
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6967
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6968
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6969
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6970
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6971
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
6972
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
6973
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6974
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6975
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
6976
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
6977
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
6978
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6979
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6980
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
6981
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6982
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
6983
|
+
[1m[36mSQL (5.1ms)[0m [1mINSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?)[0m [["created_at", Mon, 28 Jul 2014 06:36:45 UTC +00:00], ["updated_at", Mon, 28 Jul 2014 06:36:45 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
6984
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
6985
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
6986
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6987
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
6988
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.4ms)
|
6989
|
+
Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.1ms)
|
6990
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
6991
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6992
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
6993
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
6994
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
6995
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
6996
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
6997
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
6998
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
6999
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
7000
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7001
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
7002
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
7003
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7004
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7005
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7006
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7007
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7008
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
7009
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
7010
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7011
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
7012
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
7013
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7014
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.4ms)
|
7015
|
+
Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
7016
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7017
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7018
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7019
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7020
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7021
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.0ms)
|
7022
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
7023
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7024
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7025
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7026
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7027
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7028
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
|
7029
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
7030
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7031
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7032
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7033
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7034
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7035
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.9ms)
|
7036
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
7037
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7038
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7039
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7040
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7041
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7042
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
|
7043
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
7044
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7045
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7046
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7047
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7048
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7049
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
7050
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
7051
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7052
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7053
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:36:45 +0400
|
7054
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7055
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7056
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
|
7057
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
7058
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7059
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7060
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7061
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7062
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7063
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7064
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7065
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7066
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7067
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7068
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7069
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7070
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7072
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7073
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7074
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7075
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7076
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7077
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7078
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7079
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7080
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7081
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7082
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7083
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7084
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7085
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7086
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7088
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7090
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7091
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7092
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7093
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "var" varchar(255) NOT NULL, "value" text, "thing_id" integer, "thing_type" varchar(30), "created_at" datetime, "updated_at" datetime) [0m
|
7094
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "index_settings_on_thing_type_and_thing_id_and_var" ON "settings" ("thing_type", "thing_id", "var")
|
7095
|
+
[1m[36m (0.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
7096
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
7097
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7098
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140320182332')
|
7099
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7100
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7101
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7102
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7103
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (14.5ms)
|
7104
|
+
Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 0.3ms)
|
7105
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7106
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7107
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7108
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7109
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7110
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.1ms)
|
7111
|
+
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms)
|
7112
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7113
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
7114
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"150", "style"=>"test", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
7115
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7116
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.2ms)
|
7117
|
+
Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.1ms)
|
7118
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7119
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7120
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7121
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7122
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7123
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.5ms)
|
7124
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
7125
|
+
Started PUT "/settings/update_all" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7126
|
+
Processing by RailsSettingsUi::SettingsController#update_all as HTML
|
7127
|
+
Parameters: {"utf8"=>"✓", "settings"=>{"project_name"=>"Dummy", "limit"=>"test", "style"=>"{\"border_color\"=>\"e0e0e0\", \"block_color\"=>\"ffffff\", \"title\"=>{\"font\"=>\"Tahoma\", \"size\"=>\"12\", \"color\"=>\"107821\"}}", "check_something"=>"on", "description"=>"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful.", "mode"=>{"auto"=>"on", "manual"=>"on"}}, "commit"=>"Save all"}
|
7128
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7129
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
|
7130
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.1ms)
|
7131
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7132
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7133
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
7134
|
+
[1m[35mSQL (3.6ms)[0m INSERT INTO "settings" ("created_at", "updated_at", "value", "var") VALUES (?, ?, ?, ?) [["created_at", Mon, 28 Jul 2014 06:56:39 UTC +00:00], ["updated_at", Mon, 28 Jul 2014 06:56:39 UTC +00:00], ["value", "--- apple\n...\n"], ["var", "company"]]
|
7135
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
7136
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7137
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7138
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7139
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
7140
|
+
Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.1ms)
|
7141
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7142
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7143
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7144
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7145
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7146
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.1ms)
|
7147
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
7148
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7150
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7151
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7152
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7153
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (5.5ms)
|
7154
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
7155
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7156
|
+
[1m[35m (0.1ms)[0m begin transaction
|
7157
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7158
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7159
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7160
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.3ms)
|
7161
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
7162
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7163
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7164
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7165
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7166
|
+
[1m[35mSettings Load (0.1ms)[0m SELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)
|
7167
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.1ms)
|
7168
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.1ms)
|
7169
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
7170
|
+
[1m[35m (0.0ms)[0m begin transaction
|
7171
|
+
Started GET "/settings" for 127.0.0.1 at 2014-07-28 10:56:39 +0400
|
7172
|
+
Processing by RailsSettingsUi::SettingsController#index as HTML
|
7173
|
+
[1m[36mSettings Load (0.1ms)[0m [1mSELECT var,value FROM "settings" WHERE (thing_type is NULL and thing_id is NULL)[0m
|
7174
|
+
Rendered /Users/accessd/projects/rails-settings-ui/app/views/rails_settings_ui/settings/index.html.haml within layouts/rails_settings_ui/application (3.6ms)
|
7175
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
7176
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7177
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7178
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7180
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7181
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7182
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7184
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7186
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7188
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7190
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7192
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7193
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7195
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7198
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7199
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7200
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7201
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7202
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7203
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7204
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7206
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
7207
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7208
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
7210
|
+
[1m[35m (0.0ms)[0m rollback transaction
|