jquery_sortable_tree 3.0.0 → 3.1.0

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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +23 -0
  3. data/app/helpers/jquery_sortable_tree_helper/render_expandable_tree_helper.rb +0 -6
  4. data/app/helpers/jquery_sortable_tree_helper/render_indented_options_helper.rb +1 -11
  5. data/app/helpers/jquery_sortable_tree_helper/render_nested_options_helper.rb +1 -7
  6. data/app/helpers/jquery_sortable_tree_helper/render_optgroup_helper.rb +11 -0
  7. data/app/helpers/jquery_sortable_tree_helper/render_sortable_tree_helper.rb +8 -4
  8. data/app/helpers/jquery_sortable_tree_helper/render_tree_helper.rb +0 -6
  9. data/app/helpers/jquery_sortable_tree_helper.rb +10 -4
  10. data/lib/jquery_sortable_tree/version.rb +1 -1
  11. data/spec/{dummy_app/spec/build_tree_helper.rb → build_tree_helper.rb} +0 -0
  12. data/spec/dummy_app/Gemfile.lock +1 -1
  13. data/spec/dummy_app/app/controllers/admin/pages_controller.rb +9 -4
  14. data/spec/dummy_app/app/controllers/pages_controller.rb +11 -3
  15. data/spec/dummy_app/app/views/admin/pages/optgroup.html.haml +3 -0
  16. data/spec/dummy_app/app/views/pages/optgroup.html.haml +3 -0
  17. data/spec/dummy_app/app/views/welcome/index.html.haml +3 -0
  18. data/spec/dummy_app/config/application.rb +1 -0
  19. data/spec/dummy_app/config/routes.rb +9 -17
  20. data/spec/dummy_app/db/test.db +0 -0
  21. data/spec/dummy_app/log/development.log +559 -0
  22. data/spec/dummy_app/log/test.log +21016 -0
  23. data/spec/dummy_app/tmp/cache/assets/development/sprockets/14805e3ed08782f4b821fe6cfd03d911 +0 -0
  24. data/spec/dummy_app/tmp/cache/assets/development/sprockets/1e445aefca5bc750ef4f584ec1dc0849 +0 -0
  25. data/spec/dummy_app/tmp/cache/assets/development/sprockets/28eefd9e9c7ea2e1414cd10a6d184ae5 +0 -0
  26. data/spec/dummy_app/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  27. data/spec/dummy_app/tmp/cache/assets/development/sprockets/3dbf5c413607e86fa3ff1f931887217e +0 -0
  28. data/spec/dummy_app/tmp/cache/assets/development/sprockets/505027f29aa1c70c5425d19ea9fb77ce +0 -0
  29. data/spec/dummy_app/tmp/cache/assets/development/sprockets/6016aac84581a1ff8e9503adf790f0eb +0 -0
  30. data/spec/dummy_app/tmp/cache/assets/development/sprockets/7eecec59a10631fead107d7e8c265910 +0 -0
  31. data/spec/dummy_app/tmp/cache/assets/development/sprockets/a0ac3dab292e1eb99d5e8a524e6dfded +0 -0
  32. data/spec/dummy_app/tmp/cache/assets/development/sprockets/a2e4e33192daa77f118bde803b5f469e +0 -0
  33. data/spec/dummy_app/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  34. data/spec/dummy_app/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  35. data/spec/spec_helper.rb +21 -0
  36. data/spec/{dummy_app/spec/views → views}/pages/index.html.haml_spec.rb +14 -10
  37. metadata +57 -7
  38. data/app/inputs/indented_collection_select_input.rb +0 -12
@@ -22712,3 +22712,562 @@ Processing by PagesController#manage as HTML
22712
22712
  Page Load (3.4ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
22713
22713
  Rendered pages/manage.html.haml within layouts/application (57.2ms)
22714
22714
  Completed 200 OK in 75ms (Views: 71.3ms | ActiveRecord: 3.4ms)
22715
+
22716
+
22717
+ Started GET "/" for 127.0.0.1 at 2014-08-04 22:18:30 +0200
22718
+ Processing by WelcomeController#index as HTML
22719
+ Rendered welcome/index.html.haml within layouts/application (4.6ms)
22720
+ Completed 200 OK in 675ms (Views: 674.4ms | ActiveRecord: 0.0ms)
22721
+
22722
+
22723
+ Started GET "/pages/nested_options" for 127.0.0.1 at 2014-08-04 22:18:36 +0200
22724
+ Processing by PagesController#nested_options as HTML
22725
+ Page Load (4.7ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22726
+ Rendered pages/nested_options.html.haml within layouts/application (30.3ms)
22727
+ Completed 200 OK in 74ms (Views: 36.2ms | ActiveRecord: 11.1ms)
22728
+
22729
+
22730
+ Started GET "/pages/nested_options" for 127.0.0.1 at 2014-08-06 14:06:38 +0200
22731
+ Processing by PagesController#nested_options as HTML
22732
+ Page Load (3.0ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22733
+ Rendered pages/nested_options.html.haml within layouts/application (8.9ms)
22734
+ Completed 200 OK in 50ms (Views: 46.3ms | ActiveRecord: 3.0ms)
22735
+
22736
+
22737
+ Started GET "/" for 127.0.0.1 at 2014-08-07 08:31:22 +0200
22738
+ Processing by WelcomeController#index as HTML
22739
+ Rendered welcome/index.html.haml within layouts/application (6.8ms)
22740
+ Completed 200 OK in 498ms (Views: 497.7ms | ActiveRecord: 0.0ms)
22741
+
22742
+
22743
+ Started GET "/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:31:26 +0200
22744
+ Processing by PagesController#indented_options as HTML
22745
+ Page Load (2.8ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22746
+ Rendered pages/indented_options.html.haml within layouts/application (28.5ms)
22747
+ Completed 200 OK in 70ms (Views: 39.2ms | ActiveRecord: 4.6ms)
22748
+
22749
+
22750
+ Started GET "/admin/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:32:10 +0200
22751
+ Processing by Admin::PagesController#indented_options as HTML
22752
+ Admin::Page Load (1.1ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
22753
+ Rendered admin/pages/indented_options.html.haml within layouts/application (13.4ms)
22754
+ Completed 200 OK in 37ms (Views: 29.9ms | ActiveRecord: 1.8ms)
22755
+
22756
+
22757
+ Started GET "/admin/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:33:18 +0200
22758
+ Processing by Admin::PagesController#indented_options as HTML
22759
+ Admin::Page Load (0.5ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
22760
+ Rendered admin/pages/indented_options.html.haml within layouts/application (7.9ms)
22761
+ Completed 200 OK in 32ms (Views: 23.2ms | ActiveRecord: 1.0ms)
22762
+
22763
+
22764
+ Started GET "/" for 127.0.0.1 at 2014-08-07 08:33:20 +0200
22765
+ Processing by WelcomeController#index as HTML
22766
+ Rendered welcome/index.html.haml within layouts/application (1.0ms)
22767
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
22768
+
22769
+
22770
+ Started GET "/admin/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:33:23 +0200
22771
+ Processing by Admin::PagesController#indented_options as HTML
22772
+ Admin::Page Load (0.8ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
22773
+ Rendered admin/pages/indented_options.html.haml within layouts/application (4.0ms)
22774
+ Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.8ms)
22775
+
22776
+
22777
+ Started GET "/admin/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:33:24 +0200
22778
+ Processing by Admin::PagesController#indented_options as HTML
22779
+ Admin::Page Load (0.5ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
22780
+ Rendered admin/pages/indented_options.html.haml within layouts/application (3.1ms)
22781
+ Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.5ms)
22782
+
22783
+
22784
+ Started GET "/pages" for 127.0.0.1 at 2014-08-07 08:42:05 +0200
22785
+ Processing by PagesController#index as HTML
22786
+ Page Load (2.3ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22787
+ Rendered pages/index.html.haml within layouts/application (16.0ms)
22788
+ Completed 200 OK in 38ms (Views: 30.0ms | ActiveRecord: 2.8ms)
22789
+
22790
+
22791
+ Started GET "/pages/nested_options" for 127.0.0.1 at 2014-08-07 08:42:09 +0200
22792
+ Processing by PagesController#nested_options as HTML
22793
+ Page Load (1.3ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22794
+ Rendered pages/nested_options.html.haml within layouts/application (6.1ms)
22795
+ Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 1.3ms)
22796
+
22797
+
22798
+ Started GET "/pages/indented_options" for 127.0.0.1 at 2014-08-07 08:42:13 +0200
22799
+ Processing by PagesController#indented_options as HTML
22800
+ Page Load (2.4ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22801
+ Rendered pages/indented_options.html.haml within layouts/application (7.3ms)
22802
+ Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 2.4ms)
22803
+
22804
+
22805
+ Started GET "/pages/manage" for 127.0.0.1 at 2014-08-07 08:42:15 +0200
22806
+ Processing by PagesController#manage as HTML
22807
+ Page Load (2.7ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
22808
+ Rendered pages/manage.html.haml within layouts/application (362.4ms)
22809
+ Completed 500 Internal Server Error in 367ms
22810
+
22811
+ ActionView::Template::Error (undefined method `to_sym' for nil:NilClass):
22812
+ 4:
22813
+ 5: Count: #{@pages.to_a.count}
22814
+ 6:
22815
+ 7: = sortable_tree @pages, namespace: :admin
22816
+ app/views/pages/manage.html.haml:7:in `_app_views_pages_manage_html_haml___3978375005826533792_69847681099240'
22817
+
22818
+
22819
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
22820
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms)
22821
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.5ms)
22822
+
22823
+
22824
+ Started GET "/pages/manage" for 127.0.0.1 at 2014-08-07 08:42:21 +0200
22825
+ Processing by PagesController#manage as HTML
22826
+ Page Load (4.1ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
22827
+ Rendered pages/manage.html.haml within layouts/application (16.0ms)
22828
+ Completed 500 Internal Server Error in 20ms
22829
+
22830
+ ActionView::Template::Error (undefined method `to_sym' for nil:NilClass):
22831
+ 4:
22832
+ 5: Count: #{@pages.to_a.count}
22833
+ 6:
22834
+ 7: = sortable_tree @pages, namespace: :admin
22835
+ app/views/pages/manage.html.haml:7:in `_app_views_pages_manage_html_haml___3978375005826533792_69847681099240'
22836
+
22837
+
22838
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
22839
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
22840
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
22841
+
22842
+
22843
+ Started GET "/pages/manage" for 127.0.0.1 at 2014-08-07 08:44:42 +0200
22844
+ Processing by PagesController#manage as HTML
22845
+ Page Load (1.8ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
22846
+ Rendered pages/manage.html.haml within layouts/application (54.1ms)
22847
+ Completed 200 OK in 72ms (Views: 66.3ms | ActiveRecord: 2.3ms)
22848
+
22849
+
22850
+ Started GET "/pages/node_manage" for 127.0.0.1 at 2014-08-07 08:46:05 +0200
22851
+ Processing by PagesController#node_manage as HTML
22852
+ Page Load (1.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."parent_id" IS NULL ORDER BY "pages"."lft" LIMIT 1
22853
+ Page Load (0.6ms) SELECT id, title, content, parent_id FROM "pages" WHERE ("pages"."lft" >= 1) AND ("pages"."lft" < 114) ORDER BY "pages"."lft", lft ASC LIMIT 15
22854
+ Rendered pages/manage.html.haml within layouts/application (17.2ms)
22855
+ Completed 200 OK in 40ms (Views: 32.2ms | ActiveRecord: 1.6ms)
22856
+
22857
+
22858
+ Started GET "/pages/expand" for 127.0.0.1 at 2014-08-07 08:46:08 +0200
22859
+ Processing by PagesController#expand as HTML
22860
+ Page Load (0.9ms) SELECT id, title, content, parent_id FROM "pages" WHERE "pages"."parent_id" IS NULL ORDER BY lft ASC, "pages"."lft"
22861
+ Rendered pages/expand.html.haml within layouts/application (23.6ms)
22862
+ Completed 200 OK in 45ms (Views: 43.1ms | ActiveRecord: 0.9ms)
22863
+
22864
+
22865
+ Started POST "/pages/expand_node" for 127.0.0.1 at 2014-08-07 08:46:11 +0200
22866
+ Processing by PagesController#expand_node as HTML
22867
+ Parameters: {"id"=>"58"}
22868
+ Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 58]]
22869
+  (0.3ms) SELECT COUNT(*) FROM "pages" WHERE "pages"."parent_id" = ? [["parent_id", 58]]
22870
+ Page Load (0.4ms) SELECT "pages".* FROM "pages" WHERE "pages"."parent_id" = ? ORDER BY "lft", lft ASC [["parent_id", 58]]
22871
+ Rendered pages/expand_node.html.haml (8.3ms)
22872
+ Completed 200 OK in 23ms (Views: 11.4ms | ActiveRecord: 0.8ms)
22873
+
22874
+
22875
+ Started POST "/pages/expand_node" for 127.0.0.1 at 2014-08-07 08:46:12 +0200
22876
+ Processing by PagesController#expand_node as HTML
22877
+ Parameters: {"id"=>"59"}
22878
+ Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE "pages"."id" = ? LIMIT 1 [["id", 59]]
22879
+  (0.3ms) SELECT COUNT(*) FROM "pages" WHERE "pages"."parent_id" = ? [["parent_id", 59]]
22880
+ Page Load (0.3ms) SELECT "pages".* FROM "pages" WHERE "pages"."parent_id" = ? ORDER BY "lft", lft ASC [["parent_id", 59]]
22881
+ Rendered pages/expand_node.html.haml (4.7ms)
22882
+ Completed 200 OK in 20ms (Views: 16.1ms | ActiveRecord: 0.7ms)
22883
+
22884
+
22885
+ Started GET "/pages/indented_options" for 127.0.0.1 at 2014-08-07 09:24:25 +0200
22886
+ Processing by PagesController#indented_options as HTML
22887
+ Page Load (1.6ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22888
+ Rendered pages/indented_options.html.haml within layouts/application (12.6ms)
22889
+ Completed 200 OK in 30ms (Views: 25.1ms | ActiveRecord: 2.1ms)
22890
+
22891
+
22892
+ Started GET "/pages/indented_options" for 127.0.0.1 at 2014-08-07 09:39:43 +0200
22893
+ Processing by PagesController#indented_options as HTML
22894
+ Page Load (1.6ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22895
+ Rendered pages/indented_options.html.haml within layouts/application (9.4ms)
22896
+ Completed 200 OK in 29ms (Views: 24.5ms | ActiveRecord: 2.1ms)
22897
+
22898
+
22899
+ Started GET "/" for 127.0.0.1 at 2014-08-07 09:39:45 +0200
22900
+ Processing by WelcomeController#index as HTML
22901
+ Rendered welcome/index.html.haml within layouts/application (2.4ms)
22902
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
22903
+
22904
+
22905
+ Started GET "/" for 127.0.0.1 at 2014-08-07 09:42:30 +0200
22906
+ Processing by WelcomeController#index as HTML
22907
+ Rendered welcome/index.html.haml within layouts/application (9.2ms)
22908
+ Completed 500 Internal Server Error in 11ms
22909
+
22910
+ ActionView::Template::Error (undefined local variable or method `optgoup_pages_path' for #<#<Class:0x0000000418dab8>:0x0000000651de38>):
22911
+ 8: %li= link_to 'pages/index (just tree)', pages_path
22912
+ 9: %li= link_to 'pages/nested_options', nested_options_pages_path
22913
+ 10: %li= link_to 'pages/indented_options', indented_options_pages_path
22914
+ 11: %li= link_to 'pages/optgroup', optgoup_pages_path
22915
+ 12: %li= link_to 'pages/manage (sortable tree)', manage_pages_path
22916
+ 13: %li= link_to 'pages/node_manage (sortable tree)', node_manage_pages_path
22917
+ 14: %li= link_to 'pages/expand (expandable tree)', expand_pages_path
22918
+ app/views/welcome/index.html.haml:11:in `_app_views_welcome_index_html_haml__845577435255304580_53011120'
22919
+
22920
+
22921
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
22922
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
22923
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
22924
+
22925
+
22926
+ Started GET "/" for 127.0.0.1 at 2014-08-07 09:42:43 +0200
22927
+ Processing by WelcomeController#index as HTML
22928
+ Rendered welcome/index.html.haml within layouts/application (12.1ms)
22929
+ Completed 200 OK in 44ms (Views: 43.9ms | ActiveRecord: 0.0ms)
22930
+
22931
+
22932
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:42:45 +0200
22933
+ Processing by PagesController#optgroup as HTML
22934
+ Rendered pages/optgroup.html.haml within layouts/application (4.1ms)
22935
+ Completed 500 Internal Server Error in 8ms
22936
+
22937
+ ActionView::Template::Error (undefined method `last' for nil:NilClass):
22938
+ 1: %p= link_to raw('&larr; back'), '/'
22939
+ 2:
22940
+ 3: = select_tag :pages, optgroup(@pages, selected: @pages.last)
22941
+ app/views/pages/optgroup.html.haml:3:in `_app_views_pages_optgroup_html_haml___1011581551220805068_69847678464980'
22942
+
22943
+
22944
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
22945
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms)
22946
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
22947
+
22948
+
22949
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:46:17 +0200
22950
+ Processing by PagesController#optgroup as HTML
22951
+ Page Load (1.8ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22952
+ Rendered pages/optgroup.html.haml within layouts/application (10.2ms)
22953
+ Completed 200 OK in 30ms (Views: 24.7ms | ActiveRecord: 2.3ms)
22954
+
22955
+
22956
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:47:24 +0200
22957
+ Processing by PagesController#optgroup as HTML
22958
+ Page Load (1.6ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22959
+ Rendered pages/optgroup.html.haml within layouts/application (8.9ms)
22960
+ Completed 200 OK in 31ms (Views: 25.7ms | ActiveRecord: 2.1ms)
22961
+
22962
+
22963
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:47:39 +0200
22964
+ Processing by PagesController#optgroup as HTML
22965
+ Page Load (1.9ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22966
+ Rendered pages/optgroup.html.haml within layouts/application (14.5ms)
22967
+ Completed 200 OK in 33ms (Views: 27.0ms | ActiveRecord: 2.4ms)
22968
+
22969
+
22970
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:47:54 +0200
22971
+ Processing by PagesController#optgroup as HTML
22972
+ Page Load (1.9ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22973
+ Rendered pages/optgroup.html.haml within layouts/application (8.5ms)
22974
+ Completed 200 OK in 29ms (Views: 23.2ms | ActiveRecord: 2.4ms)
22975
+
22976
+
22977
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:48:50 +0200
22978
+ Processing by PagesController#optgroup as HTML
22979
+ Page Load (2.0ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22980
+ Rendered pages/optgroup.html.haml within layouts/application (13.2ms)
22981
+ Completed 200 OK in 33ms (Views: 26.7ms | ActiveRecord: 2.6ms)
22982
+
22983
+
22984
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:53:40 +0200
22985
+ Processing by PagesController#optgroup as HTML
22986
+ Page Load (2.4ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
22987
+ Rendered pages/optgroup.html.haml within layouts/application (20.7ms)
22988
+ Completed 200 OK in 54ms (Views: 45.5ms | ActiveRecord: 3.5ms)
22989
+
22990
+
22991
+ Started GET "/" for 127.0.0.1 at 2014-08-07 09:53:41 +0200
22992
+ Processing by WelcomeController#index as HTML
22993
+ Rendered welcome/index.html.haml within layouts/application (2.0ms)
22994
+ Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
22995
+
22996
+
22997
+ Started GET "/admin/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:53:46 +0200
22998
+ Processing by Admin::PagesController#optgroup as HTML
22999
+ Completed 500 Internal Server Error in 9ms
23000
+
23001
+ ActionView::MissingTemplate (Missing template admin/pages/optgroup, application/optgroup with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee, :haml]}. Searched in:
23002
+ * "/home/nyitrai/RubymineProjects/jquery_sortable_tree/spec/dummy_app/app/views"
23003
+ ):
23004
+ actionview (4.1.4) lib/action_view/path_set.rb:46:in `find'
23005
+ actionview (4.1.4) lib/action_view/lookup_context.rb:124:in `find'
23006
+ actionview (4.1.4) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
23007
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
23008
+ actionview (4.1.4) lib/action_view/renderer/template_renderer.rb:8:in `render'
23009
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:42:in `render_template'
23010
+ actionview (4.1.4) lib/action_view/renderer/renderer.rb:23:in `render'
23011
+ actionview (4.1.4) lib/action_view/rendering.rb:99:in `_render_template'
23012
+ actionpack (4.1.4) lib/action_controller/metal/streaming.rb:217:in `_render_template'
23013
+ actionview (4.1.4) lib/action_view/rendering.rb:82:in `render_to_body'
23014
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
23015
+ actionpack (4.1.4) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
23016
+ actionpack (4.1.4) lib/abstract_controller/rendering.rb:25:in `render'
23017
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:16:in `render'
23018
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
23019
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
23020
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
23021
+ activesupport (4.1.4) lib/active_support/core_ext/benchmark.rb:12:in `ms'
23022
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
23023
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
23024
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
23025
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:40:in `render'
23026
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
23027
+ actionpack (4.1.4) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
23028
+ actionpack (4.1.4) lib/abstract_controller/base.rb:189:in `process_action'
23029
+ actionpack (4.1.4) lib/action_controller/metal/rendering.rb:10:in `process_action'
23030
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
23031
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
23032
+ activesupport (4.1.4) lib/active_support/callbacks.rb:113:in `call'
23033
+ activesupport (4.1.4) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
23034
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `call'
23035
+ activesupport (4.1.4) lib/active_support/callbacks.rb:229:in `block in halting'
23036
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `call'
23037
+ activesupport (4.1.4) lib/active_support/callbacks.rb:166:in `block in halting'
23038
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `call'
23039
+ activesupport (4.1.4) lib/active_support/callbacks.rb:86:in `run_callbacks'
23040
+ actionpack (4.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
23041
+ actionpack (4.1.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
23042
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
23043
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `block in instrument'
23044
+ activesupport (4.1.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
23045
+ activesupport (4.1.4) lib/active_support/notifications.rb:159:in `instrument'
23046
+ actionpack (4.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
23047
+ actionpack (4.1.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
23048
+ activerecord (4.1.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
23049
+ actionpack (4.1.4) lib/abstract_controller/base.rb:136:in `process'
23050
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
23051
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
23052
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23053
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
23054
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
23055
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23056
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
23057
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
23058
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
23059
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
23060
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
23061
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23062
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
23063
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23064
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23065
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
23066
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23067
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23068
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23069
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
23070
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23071
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23072
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
23073
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23074
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23075
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23076
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23077
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23078
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
23079
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
23080
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23081
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
23082
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
23083
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
23084
+ quiet_assets (1.0.3) lib/quiet_assets.rb:23:in `call_with_quiet_assets'
23085
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23086
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23087
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23088
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23089
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23090
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
23091
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23092
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
23093
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
23094
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23095
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
23096
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
23097
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
23098
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
23099
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
23100
+
23101
+
23102
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.8ms)
23103
+
23104
+
23105
+ Started GET "/admin/pages/optgroup" for 127.0.0.1 at 2014-08-07 09:54:32 +0200
23106
+ Processing by Admin::PagesController#optgroup as HTML
23107
+ Admin::Page Load (0.7ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
23108
+ Rendered admin/pages/optgroup.html.haml within layouts/application (8.3ms)
23109
+ Completed 200 OK in 25ms (Views: 23.3ms | ActiveRecord: 1.2ms)
23110
+
23111
+
23112
+ Started GET "/" for 127.0.0.1 at 2014-08-07 09:54:39 +0200
23113
+ Processing by WelcomeController#index as HTML
23114
+ Rendered welcome/index.html.haml within layouts/application (2.1ms)
23115
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
23116
+
23117
+
23118
+ Started GET "/admin/pages/indented_options" for 127.0.0.1 at 2014-08-07 10:02:09 +0200
23119
+ Processing by Admin::PagesController#indented_options as HTML
23120
+ Admin::Page Load (0.7ms) SELECT id, title, content, parent_id FROM "admin_pages" ORDER BY lft ASC LIMIT 15
23121
+ Rendered admin/pages/indented_options.html.haml within layouts/application (4.1ms)
23122
+ Completed 200 OK in 33ms (Views: 31.7ms | ActiveRecord: 0.7ms)
23123
+
23124
+
23125
+ Started GET "/" for 127.0.0.1 at 2014-08-07 10:06:02 +0200
23126
+ Processing by WelcomeController#index as HTML
23127
+ Rendered welcome/index.html.haml within layouts/application (0.9ms)
23128
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
23129
+
23130
+
23131
+ Started GET "/pages/optgroup" for 127.0.0.1 at 2014-08-07 10:06:05 +0200
23132
+ Processing by PagesController#optgroup as HTML
23133
+ Page Load (2.7ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC LIMIT 15
23134
+ Rendered pages/optgroup.html.haml within layouts/application (5.7ms)
23135
+ Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 2.7ms)
23136
+
23137
+
23138
+ Started GET "/" for 127.0.0.1 at 2014-08-07 10:07:18 +0200
23139
+ Processing by WelcomeController#index as HTML
23140
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
23141
+ Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
23142
+
23143
+
23144
+ Started GET "/pages/manage" for 127.0.0.1 at 2014-08-07 10:07:21 +0200
23145
+ Processing by PagesController#manage as HTML
23146
+ Page Load (3.1ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
23147
+ Rendered pages/manage.html.haml within layouts/application (48.8ms)
23148
+ Completed 200 OK in 68ms (Views: 64.0ms | ActiveRecord: 3.1ms)
23149
+
23150
+
23151
+ Started PUT "/pages/8.json" for 127.0.0.1 at 2014-08-07 10:07:27 +0200
23152
+
23153
+ AbstractController::ActionNotFound (The action 'update' could not be found for PagesController):
23154
+ actionpack (4.1.4) lib/abstract_controller/base.rb:131:in `process'
23155
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
23156
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
23157
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23158
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
23159
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
23160
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23161
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
23162
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
23163
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
23164
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
23165
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
23166
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23167
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
23168
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23169
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23170
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
23171
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23172
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23173
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23174
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
23175
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23176
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23177
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
23178
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23179
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23180
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23181
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23182
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23183
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
23184
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
23185
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23186
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
23187
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
23188
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
23189
+ quiet_assets (1.0.3) lib/quiet_assets.rb:23:in `call_with_quiet_assets'
23190
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23191
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23192
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23193
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23194
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23195
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
23196
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23197
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
23198
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
23199
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23200
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
23201
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
23202
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
23203
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
23204
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
23205
+
23206
+
23207
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.4ms)
23208
+
23209
+
23210
+ Started PUT "/pages/3.json" for 127.0.0.1 at 2014-08-07 10:07:33 +0200
23211
+
23212
+ AbstractController::ActionNotFound (The action 'update' could not be found for PagesController):
23213
+ actionpack (4.1.4) lib/abstract_controller/base.rb:131:in `process'
23214
+ actionview (4.1.4) lib/action_view/rendering.rb:30:in `process'
23215
+ actionpack (4.1.4) lib/action_controller/metal.rb:196:in `dispatch'
23216
+ actionpack (4.1.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23217
+ actionpack (4.1.4) lib/action_controller/metal.rb:232:in `block in action'
23218
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `call'
23219
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23220
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:50:in `call'
23221
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:71:in `block in call'
23222
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `each'
23223
+ actionpack (4.1.4) lib/action_dispatch/journey/router.rb:59:in `call'
23224
+ actionpack (4.1.4) lib/action_dispatch/routing/route_set.rb:678:in `call'
23225
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23226
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
23227
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23228
+ actionpack (4.1.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23229
+ actionpack (4.1.4) lib/action_dispatch/middleware/flash.rb:254:in `call'
23230
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23231
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23232
+ actionpack (4.1.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23233
+ activerecord (4.1.4) lib/active_record/query_cache.rb:36:in `call'
23234
+ activerecord (4.1.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23235
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23236
+ activesupport (4.1.4) lib/active_support/callbacks.rb:82:in `run_callbacks'
23237
+ actionpack (4.1.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23238
+ actionpack (4.1.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23239
+ actionpack (4.1.4) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23240
+ actionpack (4.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23241
+ actionpack (4.1.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23242
+ railties (4.1.4) lib/rails/rack/logger.rb:38:in `call_app'
23243
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `block in call'
23244
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23245
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:26:in `tagged'
23246
+ activesupport (4.1.4) lib/active_support/tagged_logging.rb:68:in `tagged'
23247
+ railties (4.1.4) lib/rails/rack/logger.rb:20:in `call'
23248
+ quiet_assets (1.0.3) lib/quiet_assets.rb:23:in `call_with_quiet_assets'
23249
+ actionpack (4.1.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23250
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23251
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23252
+ activesupport (4.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23253
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23254
+ actionpack (4.1.4) lib/action_dispatch/middleware/static.rb:64:in `call'
23255
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23256
+ railties (4.1.4) lib/rails/engine.rb:514:in `call'
23257
+ railties (4.1.4) lib/rails/application.rb:144:in `call'
23258
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23259
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
23260
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
23261
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
23262
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
23263
+ /home/nyitrai/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
23264
+
23265
+
23266
+ Rendered /home/nyitrai/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/unknown_action.text.erb (0.5ms)
23267
+
23268
+
23269
+ Started GET "/pages/manage" for 127.0.0.1 at 2014-08-07 10:42:26 +0200
23270
+ Processing by PagesController#manage as HTML
23271
+ Page Load (1.7ms) SELECT id, title, content, parent_id FROM "pages" ORDER BY lft ASC
23272
+ Rendered pages/manage.html.haml within layouts/application (50.2ms)
23273
+ Completed 200 OK in 66ms (Views: 63.6ms | ActiveRecord: 1.7ms)