flexite 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/services/flexite/diff/async_check_service.rb +6 -2
- data/lib/flexite/version.rb +1 -1
- data/test/dummy/log/development.log +477 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d7bada1d5045fd4b95cb1dd115062cd966a1649
|
|
4
|
+
data.tar.gz: 29c5ae3a83840ff6acb5e77d92df35fd6bcbffd1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b49b3cc5018d207ac1f6517e5d76ffa75fe50ded089e5b7835b874ac9824e933ac5aa9bb7761b793bbd08f4c6dafcc263b198d7948051175343097e53128c02
|
|
7
|
+
data.tar.gz: 1bbd4ba48643870ae320f184a1cc493c2d21c68a8a3c5aee25200871deb5073af44c5163f47c29681157d400678258bfa36bc480b099d6dfd796942a13649894
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
module Flexite
|
|
2
2
|
class Diff
|
|
3
3
|
class AsyncCheckService
|
|
4
|
-
def initialize(*args
|
|
4
|
+
def initialize(*args)
|
|
5
5
|
@args = args
|
|
6
|
-
@handler =
|
|
6
|
+
@handler = Flexite.config.async_diff_handler
|
|
7
7
|
end
|
|
8
8
|
|
|
9
9
|
def call
|
|
10
|
+
unless @handler.is_a?(Proc)
|
|
11
|
+
raise 'Async handler should be a proc object'
|
|
12
|
+
end
|
|
13
|
+
|
|
10
14
|
@handler.call(*@args)
|
|
11
15
|
end
|
|
12
16
|
end
|
data/lib/flexite/version.rb
CHANGED
|
@@ -762875,3 +762875,480 @@ Migrating to RemoveCreatedByColumnFromFlexiteConfigs (20180629110934)
|
|
|
762875
762875
|
[1m[35m (0.0ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20180629110934')
|
|
762876
762876
|
[1m[36m (6.5ms)[0m [1mcommit transaction[0m
|
|
762877
762877
|
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
762878
|
+
|
|
762879
|
+
|
|
762880
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762881
|
+
Connecting to database specified by database.yml
|
|
762882
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
762883
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (7.4ms)
|
|
762884
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (1.6ms)
|
|
762885
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (1.9ms)
|
|
762886
|
+
Completed 200 OK in 28.0ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
|
762887
|
+
|
|
762888
|
+
|
|
762889
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762890
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (7ms)
|
|
762891
|
+
|
|
762892
|
+
|
|
762893
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762894
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (1ms)
|
|
762895
|
+
|
|
762896
|
+
|
|
762897
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762898
|
+
Served asset /flexite/application.css - 304 Not Modified (3ms)
|
|
762899
|
+
|
|
762900
|
+
|
|
762901
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762902
|
+
Served asset /flexite/tree.css - 304 Not Modified (1ms)
|
|
762903
|
+
|
|
762904
|
+
|
|
762905
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762906
|
+
Served asset /jquery_ujs.js - 200 OK (6ms)
|
|
762907
|
+
|
|
762908
|
+
|
|
762909
|
+
Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762910
|
+
Served asset /jquery.min.js - 200 OK (1ms)
|
|
762911
|
+
|
|
762912
|
+
|
|
762913
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762914
|
+
Served asset /flexite/bootstrap.min.js - 200 OK (1ms)
|
|
762915
|
+
|
|
762916
|
+
|
|
762917
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762918
|
+
Served asset /flexite/treeview.js - 200 OK (1ms)
|
|
762919
|
+
|
|
762920
|
+
|
|
762921
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762922
|
+
Served asset /flexite/tree.js - 200 OK (1ms)
|
|
762923
|
+
|
|
762924
|
+
|
|
762925
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762926
|
+
Served asset /flexite/common.js - 304 Not Modified (2ms)
|
|
762927
|
+
|
|
762928
|
+
|
|
762929
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762930
|
+
Served asset /flexite/application.js - 200 OK (7ms)
|
|
762931
|
+
|
|
762932
|
+
|
|
762933
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762934
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
|
762935
|
+
|
|
762936
|
+
|
|
762937
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762938
|
+
Served asset /flexite/treeview.js - 304 Not Modified (0ms)
|
|
762939
|
+
|
|
762940
|
+
|
|
762941
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762942
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (0ms)
|
|
762943
|
+
|
|
762944
|
+
|
|
762945
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762946
|
+
Served asset /flexite/tree.js - 304 Not Modified (2ms)
|
|
762947
|
+
|
|
762948
|
+
|
|
762949
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762950
|
+
Served asset /flexite/application.js - 304 Not Modified (0ms)
|
|
762951
|
+
|
|
762952
|
+
|
|
762953
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762954
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
762955
|
+
|
|
762956
|
+
|
|
762957
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762958
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
762959
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
762960
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (12.7ms)
|
|
762961
|
+
Completed 200 OK in 31.3ms (Views: 12.1ms | ActiveRecord: 1.8ms)
|
|
762962
|
+
|
|
762963
|
+
|
|
762964
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:38:18 +0300
|
|
762965
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (1ms)
|
|
762966
|
+
|
|
762967
|
+
|
|
762968
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:25 +0300
|
|
762969
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (2ms)
|
|
762970
|
+
|
|
762971
|
+
|
|
762972
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:25 +0300
|
|
762973
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
762974
|
+
|
|
762975
|
+
|
|
762976
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:25 +0300
|
|
762977
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
762978
|
+
|
|
762979
|
+
|
|
762980
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:25 +0300
|
|
762981
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
762982
|
+
|
|
762983
|
+
|
|
762984
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
762985
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
762986
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (4.3ms)
|
|
762987
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
762988
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.4ms)
|
|
762989
|
+
Completed 200 OK in 13.1ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
|
762990
|
+
|
|
762991
|
+
|
|
762992
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
762993
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
762994
|
+
|
|
762995
|
+
|
|
762996
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
762997
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
762998
|
+
|
|
762999
|
+
|
|
763000
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
763001
|
+
Served asset /flexite/application.css - 304 Not Modified (1ms)
|
|
763002
|
+
|
|
763003
|
+
|
|
763004
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
763005
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763006
|
+
|
|
763007
|
+
|
|
763008
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
763009
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763010
|
+
|
|
763011
|
+
|
|
763012
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
763013
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763014
|
+
[1m[35mFlexite::Config Load (0.2ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
763015
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.6ms)
|
|
763016
|
+
Completed 200 OK in 2.7ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
|
763017
|
+
|
|
763018
|
+
|
|
763019
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:38:47 +0300
|
|
763020
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763021
|
+
|
|
763022
|
+
|
|
763023
|
+
Started GET "/configs/1/configs.json" for 127.0.0.1 at 2018-07-13 19:38:52 +0300
|
|
763024
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763025
|
+
Parameters: {"config_id"=>"1"}
|
|
763026
|
+
[1m[36mFlexite::Config Load (0.6ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 1 GROUP BY flexite_configs.id[0m
|
|
763027
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (4.1ms)
|
|
763028
|
+
Completed 200 OK in 6.8ms (Views: 5.8ms | ActiveRecord: 0.6ms)
|
|
763029
|
+
|
|
763030
|
+
|
|
763031
|
+
Started GET "/configs/2/configs.json" for 127.0.0.1 at 2018-07-13 19:38:53 +0300
|
|
763032
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763033
|
+
Parameters: {"config_id"=>"2"}
|
|
763034
|
+
[1m[35mFlexite::Config Load (2.9ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 2 GROUP BY flexite_configs.id
|
|
763035
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (98.1ms)
|
|
763036
|
+
Completed 200 OK in 100.9ms (Views: 97.5ms | ActiveRecord: 2.9ms)
|
|
763037
|
+
|
|
763038
|
+
|
|
763039
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763040
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763041
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (9.9ms)
|
|
763042
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763043
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.5ms)
|
|
763044
|
+
Completed 200 OK in 19.8ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
|
763045
|
+
|
|
763046
|
+
|
|
763047
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763048
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763049
|
+
|
|
763050
|
+
|
|
763051
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763052
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763053
|
+
|
|
763054
|
+
|
|
763055
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763056
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763057
|
+
|
|
763058
|
+
|
|
763059
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763060
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763061
|
+
|
|
763062
|
+
|
|
763063
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763064
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
763065
|
+
|
|
763066
|
+
|
|
763067
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763068
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763069
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
763070
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.4ms)
|
|
763071
|
+
Completed 200 OK in 2.4ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
|
763072
|
+
|
|
763073
|
+
|
|
763074
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:39:23 +0300
|
|
763075
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763076
|
+
|
|
763077
|
+
|
|
763078
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763079
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763080
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (2.9ms)
|
|
763081
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763082
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.4ms)
|
|
763083
|
+
Completed 200 OK in 9.8ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
|
763084
|
+
|
|
763085
|
+
|
|
763086
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763087
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763088
|
+
|
|
763089
|
+
|
|
763090
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763091
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
763092
|
+
|
|
763093
|
+
|
|
763094
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763095
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763096
|
+
|
|
763097
|
+
|
|
763098
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763099
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763100
|
+
|
|
763101
|
+
|
|
763102
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763103
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763104
|
+
|
|
763105
|
+
|
|
763106
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763107
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763108
|
+
[1m[35mFlexite::Config Load (0.1ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
763109
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.4ms)
|
|
763110
|
+
Completed 200 OK in 2.7ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
|
763111
|
+
|
|
763112
|
+
|
|
763113
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:39:30 +0300
|
|
763114
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763115
|
+
|
|
763116
|
+
|
|
763117
|
+
Started GET "/configs/1/configs.json" for 127.0.0.1 at 2018-07-13 19:39:42 +0300
|
|
763118
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763119
|
+
Parameters: {"config_id"=>"1"}
|
|
763120
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 1 GROUP BY flexite_configs.id[0m
|
|
763121
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.3ms)
|
|
763122
|
+
Completed 200 OK in 2.3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
|
763123
|
+
|
|
763124
|
+
|
|
763125
|
+
Started GET "/configs/2/configs.json" for 127.0.0.1 at 2018-07-13 19:39:43 +0300
|
|
763126
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763127
|
+
Parameters: {"config_id"=>"2"}
|
|
763128
|
+
[1m[35mFlexite::Config Load (2.5ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 2 GROUP BY flexite_configs.id
|
|
763129
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (94.9ms)
|
|
763130
|
+
Completed 200 OK in 97.6ms (Views: 94.7ms | ActiveRecord: 2.5ms)
|
|
763131
|
+
|
|
763132
|
+
|
|
763133
|
+
Started GET "/entries/5/select_type.js" for 127.0.0.1 at 2018-07-13 19:39:44 +0300
|
|
763134
|
+
Processing by Flexite::EntriesController#select_type as JS
|
|
763135
|
+
Parameters: {"parent_id"=>"5"}
|
|
763136
|
+
[1m[36mFlexite::Config Load (0.4ms)[0m [1mSELECT "flexite_configs".* FROM "flexite_configs" WHERE "flexite_configs"."id" = ? LIMIT 1[0m [["id", "5"]]
|
|
763137
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/_types_dropdown.html.haml (3.2ms)
|
|
763138
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/select_type.js.haml (5.6ms)
|
|
763139
|
+
Completed 200 OK in 10.6ms (Views: 7.6ms | ActiveRecord: 0.4ms)
|
|
763140
|
+
|
|
763141
|
+
|
|
763142
|
+
Started GET "/entries/4/edit.js" for 127.0.0.1 at 2018-07-13 19:39:45 +0300
|
|
763143
|
+
Processing by Flexite::EntriesController#edit as JS
|
|
763144
|
+
Parameters: {"id"=>"4"}
|
|
763145
|
+
[1m[35mFlexite::Entry Load (0.2ms)[0m SELECT "flexite_entries".* FROM "flexite_entries" WHERE "flexite_entries"."id" = ? LIMIT 1 [["id", "4"]]
|
|
763146
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/types/_int_entry.html.haml (3.2ms)
|
|
763147
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/_form.html.haml (22.0ms)
|
|
763148
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/edit.js.haml (23.4ms)
|
|
763149
|
+
Completed 200 OK in 45.9ms (Views: 24.6ms | ActiveRecord: 0.9ms)
|
|
763150
|
+
|
|
763151
|
+
|
|
763152
|
+
Started GET "/histories/4/flexite/entry/show" for 127.0.0.1 at 2018-07-13 19:39:46 +0300
|
|
763153
|
+
Processing by Flexite::HistoriesController#index as JS
|
|
763154
|
+
Parameters: {"entity_id"=>"4", "entity_type"=>"flexite/entry"}
|
|
763155
|
+
[1m[36mFlexite::History Load (0.2ms)[0m [1mSELECT "flexite_histories".* FROM "flexite_histories" WHERE "flexite_histories"."entity_id" = 4 AND "flexite_histories"."entity_type" = 'Flexite::Entry'[0m
|
|
763156
|
+
[1m[35mFlexite::HistoryAttribute Load (0.1ms)[0m SELECT "flexite_history_attributes".* FROM "flexite_history_attributes" WHERE "flexite_history_attributes"."history_id" IN (7)
|
|
763157
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/histories/_history.html.haml (1.6ms)
|
|
763158
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/histories/index.js.haml (21.1ms)
|
|
763159
|
+
Completed 200 OK in 26.5ms (Views: 24.3ms | ActiveRecord: 0.8ms)
|
|
763160
|
+
|
|
763161
|
+
|
|
763162
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763163
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763164
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (2.3ms)
|
|
763165
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763166
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.3ms)
|
|
763167
|
+
Completed 200 OK in 8.0ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
|
763168
|
+
|
|
763169
|
+
|
|
763170
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763171
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763172
|
+
|
|
763173
|
+
|
|
763174
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763175
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763176
|
+
|
|
763177
|
+
|
|
763178
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763179
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763180
|
+
|
|
763181
|
+
|
|
763182
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763183
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763184
|
+
|
|
763185
|
+
|
|
763186
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763187
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
763188
|
+
|
|
763189
|
+
|
|
763190
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763191
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763192
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
763193
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.5ms)
|
|
763194
|
+
Completed 200 OK in 2.8ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
|
763195
|
+
|
|
763196
|
+
|
|
763197
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:40:06 +0300
|
|
763198
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763199
|
+
|
|
763200
|
+
|
|
763201
|
+
Started GET "/configs/1/configs.json" for 127.0.0.1 at 2018-07-13 19:40:11 +0300
|
|
763202
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763203
|
+
Parameters: {"config_id"=>"1"}
|
|
763204
|
+
[1m[35mFlexite::Config Load (0.7ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 1 GROUP BY flexite_configs.id
|
|
763205
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (3.8ms)
|
|
763206
|
+
Completed 200 OK in 6.4ms (Views: 5.3ms | ActiveRecord: 0.7ms)
|
|
763207
|
+
|
|
763208
|
+
|
|
763209
|
+
Started GET "/configs/2/configs.json" for 127.0.0.1 at 2018-07-13 19:40:13 +0300
|
|
763210
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763211
|
+
Parameters: {"config_id"=>"2"}
|
|
763212
|
+
[1m[36mFlexite::Config Load (2.3ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 2 GROUP BY flexite_configs.id[0m
|
|
763213
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (97.9ms)
|
|
763214
|
+
Completed 200 OK in 100.5ms (Views: 97.8ms | ActiveRecord: 2.3ms)
|
|
763215
|
+
|
|
763216
|
+
|
|
763217
|
+
Started GET "/entries/4/edit.js" for 127.0.0.1 at 2018-07-13 19:40:13 +0300
|
|
763218
|
+
Processing by Flexite::EntriesController#edit as JS
|
|
763219
|
+
Parameters: {"id"=>"4"}
|
|
763220
|
+
[1m[35mFlexite::Entry Load (0.2ms)[0m SELECT "flexite_entries".* FROM "flexite_entries" WHERE "flexite_entries"."id" = ? LIMIT 1 [["id", "4"]]
|
|
763221
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/types/_int_entry.html.haml (2.8ms)
|
|
763222
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/_form.html.haml (9.1ms)
|
|
763223
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/edit.js.haml (10.5ms)
|
|
763224
|
+
Completed 200 OK in 15.0ms (Views: 13.0ms | ActiveRecord: 0.2ms)
|
|
763225
|
+
|
|
763226
|
+
|
|
763227
|
+
Started GET "/histories/4/flexite/entry/show" for 127.0.0.1 at 2018-07-13 19:40:14 +0300
|
|
763228
|
+
Processing by Flexite::HistoriesController#index as JS
|
|
763229
|
+
Parameters: {"entity_id"=>"4", "entity_type"=>"flexite/entry"}
|
|
763230
|
+
[1m[36mFlexite::History Load (0.2ms)[0m [1mSELECT "flexite_histories".* FROM "flexite_histories" WHERE "flexite_histories"."entity_id" = 4 AND "flexite_histories"."entity_type" = 'Flexite::Entry'[0m
|
|
763231
|
+
[1m[35mFlexite::HistoryAttribute Load (0.1ms)[0m SELECT "flexite_history_attributes".* FROM "flexite_history_attributes" WHERE "flexite_history_attributes"."history_id" IN (7)
|
|
763232
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/histories/_history.html.haml (0.7ms)
|
|
763233
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/histories/index.js.haml (3.2ms)
|
|
763234
|
+
Completed 200 OK in 7.4ms (Views: 6.5ms | ActiveRecord: 0.3ms)
|
|
763235
|
+
|
|
763236
|
+
|
|
763237
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763238
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763239
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (2.7ms)
|
|
763240
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763241
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.3ms)
|
|
763242
|
+
Completed 200 OK in 9.3ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
|
763243
|
+
|
|
763244
|
+
|
|
763245
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763246
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763247
|
+
|
|
763248
|
+
|
|
763249
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763250
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
763251
|
+
|
|
763252
|
+
|
|
763253
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763254
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763255
|
+
|
|
763256
|
+
|
|
763257
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763258
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763259
|
+
|
|
763260
|
+
|
|
763261
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763262
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763263
|
+
|
|
763264
|
+
|
|
763265
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763266
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763267
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
763268
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.6ms)
|
|
763269
|
+
Completed 200 OK in 2.8ms (Views: 2.5ms | ActiveRecord: 0.2ms)
|
|
763270
|
+
|
|
763271
|
+
|
|
763272
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:40:28 +0300
|
|
763273
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763274
|
+
|
|
763275
|
+
|
|
763276
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763277
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763278
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (3.1ms)
|
|
763279
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763280
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.3ms)
|
|
763281
|
+
Completed 200 OK in 9.4ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
763282
|
+
|
|
763283
|
+
|
|
763284
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763285
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (2ms)
|
|
763286
|
+
|
|
763287
|
+
|
|
763288
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763289
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763290
|
+
|
|
763291
|
+
|
|
763292
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763293
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763294
|
+
|
|
763295
|
+
|
|
763296
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763297
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763298
|
+
|
|
763299
|
+
|
|
763300
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:40:50 +0300
|
|
763301
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763302
|
+
|
|
763303
|
+
|
|
763304
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:40:51 +0300
|
|
763305
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763306
|
+
[1m[35mFlexite::Config Load (0.2ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
763307
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.4ms)
|
|
763308
|
+
Completed 200 OK in 2.5ms (Views: 2.1ms | ActiveRecord: 0.2ms)
|
|
763309
|
+
|
|
763310
|
+
|
|
763311
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:40:51 +0300
|
|
763312
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763313
|
+
|
|
763314
|
+
|
|
763315
|
+
Started GET "/" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763316
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
763317
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (3.2ms)
|
|
763318
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.1ms)
|
|
763319
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (0.4ms)
|
|
763320
|
+
Completed 200 OK in 11.7ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
|
763321
|
+
|
|
763322
|
+
|
|
763323
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763324
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (0ms)
|
|
763325
|
+
|
|
763326
|
+
|
|
763327
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763328
|
+
Served asset /flexite/tree.css - 304 Not Modified (0ms)
|
|
763329
|
+
|
|
763330
|
+
|
|
763331
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763332
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
763333
|
+
|
|
763334
|
+
|
|
763335
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763336
|
+
Served asset /flexite/application.css - 304 Not Modified (0ms)
|
|
763337
|
+
|
|
763338
|
+
|
|
763339
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763340
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (0ms)
|
|
763341
|
+
|
|
763342
|
+
|
|
763343
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763344
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
763345
|
+
[1m[36mFlexite::Config Load (0.2ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
763346
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (1.5ms)
|
|
763347
|
+
Completed 200 OK in 2.5ms (Views: 2.1ms | ActiveRecord: 0.2ms)
|
|
763348
|
+
|
|
763349
|
+
|
|
763350
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-13 19:41:06 +0300
|
|
763351
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
763352
|
+
Connecting to database specified by database.yml
|
|
763353
|
+
Connecting to database specified by database.yml
|
|
763354
|
+
Connecting to database specified by database.yml
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
17370
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flexite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Maksim Rusakovich
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-07-
|
|
11
|
+
date: 2018-07-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -339,6 +339,7 @@ files:
|
|
|
339
339
|
- test/dummy/tmp/cache/assets/DF1/210/sprockets%2Ff4fe7dba1445ba1b668aaa1bd34ca984
|
|
340
340
|
- test/dummy/tmp/cache/assets/E44/790/sprockets%2Fefb8d8ea9e97da9d675a8bfa1d5de343
|
|
341
341
|
- test/dummy/tmp/nodes.json
|
|
342
|
+
- test/dummy/tmp/pids/server.pid
|
|
342
343
|
- test/fixtures/flexite/configs.yml
|
|
343
344
|
- test/fixtures/flexite/entries.yml
|
|
344
345
|
- test/fixtures/flexite/histories.yml
|
|
@@ -384,6 +385,7 @@ test_files:
|
|
|
384
385
|
- test/integration/navigation_test.rb
|
|
385
386
|
- test/dummy/README.rdoc
|
|
386
387
|
- test/dummy/tmp/nodes.json
|
|
388
|
+
- test/dummy/tmp/pids/server.pid
|
|
387
389
|
- test/dummy/tmp/cache/assets/D4B/A20/sprockets%2Febde89014596e655c35df9c4a01ee636
|
|
388
390
|
- test/dummy/tmp/cache/assets/D0D/E60/sprockets%2F90ea9eaa4671ec2d76703bae31972634
|
|
389
391
|
- test/dummy/tmp/cache/assets/E44/790/sprockets%2Fefb8d8ea9e97da9d675a8bfa1d5de343
|