the_sortable_tree 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/README.md +6 -1
  2. data/app/helpers/render_nested_options_helper.rb +5 -2
  3. data/lib/the_sortable_tree/version.rb +1 -1
  4. data/spec/{controlllers → old_tests/controlllers}/controller_mixin_spec.rb +1 -1
  5. data/spec/{dummy → old_tests/dummy}/README.rdoc +0 -0
  6. data/spec/{dummy → old_tests/dummy}/Rakefile +0 -0
  7. data/spec/{dummy → old_tests/dummy}/app/assets/javascripts/application.js +0 -0
  8. data/spec/{dummy → old_tests/dummy}/app/assets/stylesheets/application.css +0 -0
  9. data/spec/{dummy → old_tests/dummy}/app/controllers/application_controller.rb +0 -0
  10. data/spec/{dummy → old_tests/dummy}/app/controllers/tests_controller.rb +0 -0
  11. data/spec/{dummy → old_tests/dummy}/app/views/layouts/application.html.erb +0 -0
  12. data/spec/{dummy → old_tests/dummy}/config/application.rb +0 -0
  13. data/spec/{dummy → old_tests/dummy}/config/boot.rb +0 -0
  14. data/spec/{dummy → old_tests/dummy}/config/database.yml +0 -0
  15. data/spec/{dummy → old_tests/dummy}/config/environment.rb +0 -0
  16. data/spec/{dummy → old_tests/dummy}/config/environments/development.rb +0 -0
  17. data/spec/{dummy → old_tests/dummy}/config/environments/production.rb +0 -0
  18. data/spec/{dummy → old_tests/dummy}/config/environments/test.rb +0 -0
  19. data/spec/{dummy → old_tests/dummy}/config/initializers/backtrace_silencers.rb +0 -0
  20. data/spec/{dummy → old_tests/dummy}/config/initializers/inflections.rb +0 -0
  21. data/spec/{dummy → old_tests/dummy}/config/initializers/mime_types.rb +0 -0
  22. data/spec/{dummy → old_tests/dummy}/config/initializers/secret_token.rb +0 -0
  23. data/spec/{dummy → old_tests/dummy}/config/initializers/session_store.rb +0 -0
  24. data/spec/{dummy → old_tests/dummy}/config/initializers/wrap_parameters.rb +0 -0
  25. data/spec/{dummy → old_tests/dummy}/config/locales/en.yml +0 -0
  26. data/spec/{dummy → old_tests/dummy}/config/routes.rb +0 -0
  27. data/spec/{dummy → old_tests/dummy}/config.ru +0 -0
  28. data/spec/{dummy → old_tests/dummy}/db/test.sqlite3 +0 -0
  29. data/spec/{dummy → old_tests/dummy}/log/test.log +0 -0
  30. data/spec/{dummy → old_tests/dummy}/public/404.html +0 -0
  31. data/spec/{dummy → old_tests/dummy}/public/422.html +0 -0
  32. data/spec/{dummy → old_tests/dummy}/public/500.html +0 -0
  33. data/spec/{dummy → old_tests/dummy}/public/favicon.ico +0 -0
  34. data/spec/{dummy → old_tests/dummy}/script/rails +0 -0
  35. data/spec/{spec_helper.rb → old_tests/spec_helper.rb} +0 -0
  36. data/spec/the_sortable_tree_app/Gemfile +20 -0
  37. data/spec/the_sortable_tree_app/Gemfile.lock +138 -0
  38. data/spec/the_sortable_tree_app/README.md +9 -0
  39. data/spec/the_sortable_tree_app/Rakefile +7 -0
  40. data/spec/the_sortable_tree_app/app/assets/images/rails.png +0 -0
  41. data/spec/the_sortable_tree_app/app/assets/javascripts/application.js +16 -0
  42. data/spec/the_sortable_tree_app/app/assets/stylesheets/application.css +11 -0
  43. data/spec/the_sortable_tree_app/app/controllers/admin/pages_controller.rb +31 -0
  44. data/spec/the_sortable_tree_app/app/controllers/application_controller.rb +3 -0
  45. data/spec/the_sortable_tree_app/app/controllers/article_categories_controller.rb +11 -0
  46. data/spec/the_sortable_tree_app/app/controllers/inventory/categories_controller.rb +15 -0
  47. data/spec/the_sortable_tree_app/app/controllers/pages_controller.rb +26 -0
  48. data/spec/the_sortable_tree_app/app/controllers/welcome_controller.rb +3 -0
  49. data/spec/the_sortable_tree_app/app/models/admin/page.rb +4 -0
  50. data/spec/the_sortable_tree_app/app/models/admin.rb +5 -0
  51. data/spec/the_sortable_tree_app/app/models/article_category.rb +4 -0
  52. data/spec/the_sortable_tree_app/app/models/inventory/category.rb +4 -0
  53. data/spec/the_sortable_tree_app/app/models/inventory.rb +5 -0
  54. data/spec/the_sortable_tree_app/app/models/page.rb +5 -0
  55. data/spec/the_sortable_tree_app/app/views/admin/pages/index.html.haml +8 -0
  56. data/spec/the_sortable_tree_app/app/views/admin/pages/manage.html.haml +3 -0
  57. data/spec/the_sortable_tree_app/app/views/admin/pages/namespaced_link.html.haml +3 -0
  58. data/spec/the_sortable_tree_app/app/views/admin/pages/nested_options.html.haml +3 -0
  59. data/spec/the_sortable_tree_app/app/views/admin/pages/node_manage.html.haml +12 -0
  60. data/spec/the_sortable_tree_app/app/views/article_categories/index.html.haml +3 -0
  61. data/spec/the_sortable_tree_app/app/views/article_categories/manage.html.haml +4 -0
  62. data/spec/the_sortable_tree_app/app/views/inventory/categories/index.html.haml +3 -0
  63. data/spec/the_sortable_tree_app/app/views/inventory/categories/manage.html.haml +4 -0
  64. data/spec/the_sortable_tree_app/app/views/layouts/application.html.erb +18 -0
  65. data/spec/the_sortable_tree_app/app/views/pages/expand.html.haml +7 -0
  66. data/spec/the_sortable_tree_app/app/views/pages/expand_children.html.haml +1 -0
  67. data/spec/the_sortable_tree_app/app/views/pages/index.html.haml +3 -0
  68. data/spec/the_sortable_tree_app/app/views/pages/manage.html.haml +8 -0
  69. data/spec/the_sortable_tree_app/app/views/pages/nested_options.html.haml +3 -0
  70. data/spec/the_sortable_tree_app/app/views/welcome/index.html.haml +40 -0
  71. data/spec/the_sortable_tree_app/config/application.rb +48 -0
  72. data/spec/the_sortable_tree_app/config/boot.rb +6 -0
  73. data/spec/the_sortable_tree_app/config/database.yml +11 -0
  74. data/spec/the_sortable_tree_app/config/environment.rb +5 -0
  75. data/spec/the_sortable_tree_app/config/environments/development.rb +30 -0
  76. data/spec/the_sortable_tree_app/config/environments/production.rb +60 -0
  77. data/spec/the_sortable_tree_app/config/environments/test.rb +42 -0
  78. data/spec/the_sortable_tree_app/config/initializers/backtrace_silencers.rb +7 -0
  79. data/spec/the_sortable_tree_app/config/initializers/inflections.rb +10 -0
  80. data/spec/the_sortable_tree_app/config/initializers/mime_types.rb +5 -0
  81. data/spec/the_sortable_tree_app/config/initializers/secret_token.rb +7 -0
  82. data/spec/the_sortable_tree_app/config/initializers/session_store.rb +8 -0
  83. data/spec/the_sortable_tree_app/config/initializers/wrap_parameters.rb +14 -0
  84. data/spec/the_sortable_tree_app/config/locales/en.yml +28 -0
  85. data/spec/the_sortable_tree_app/config/routes.rb +47 -0
  86. data/spec/the_sortable_tree_app/config.ru +4 -0
  87. data/spec/the_sortable_tree_app/db/development.db +0 -0
  88. data/spec/the_sortable_tree_app/db/migrate/20120211053457_create_pages.rb +16 -0
  89. data/spec/the_sortable_tree_app/db/migrate/20120503173258_create_article_categories.rb +16 -0
  90. data/spec/the_sortable_tree_app/db/migrate/20120508093823_create_inventory_categories.rb +16 -0
  91. data/spec/the_sortable_tree_app/db/migrate/20130128160328_create_admin_pages.rb +16 -0
  92. data/spec/the_sortable_tree_app/db/production.db +0 -0
  93. data/spec/the_sortable_tree_app/db/schema.rb +64 -0
  94. data/spec/the_sortable_tree_app/db/seeds.rb +96 -0
  95. data/spec/the_sortable_tree_app/db/test.db +0 -0
  96. data/spec/the_sortable_tree_app/doc/README_FOR_APP +2 -0
  97. data/spec/the_sortable_tree_app/log/development.log +18672 -0
  98. data/spec/the_sortable_tree_app/log/production.log +5 -0
  99. data/spec/the_sortable_tree_app/public/404.html +26 -0
  100. data/spec/the_sortable_tree_app/public/422.html +26 -0
  101. data/spec/the_sortable_tree_app/public/500.html +26 -0
  102. data/spec/the_sortable_tree_app/public/favicon.ico +0 -0
  103. data/spec/the_sortable_tree_app/public/robots.txt +5 -0
  104. data/spec/the_sortable_tree_app/script/rails +6 -0
  105. data/spec/the_sortable_tree_app/test/fixtures/admin/pages.yml +7 -0
  106. data/spec/the_sortable_tree_app/test/fixtures/article_categories.yml +9 -0
  107. data/spec/the_sortable_tree_app/test/fixtures/comments.yml +13 -0
  108. data/spec/the_sortable_tree_app/test/fixtures/inventory/categories.yml +9 -0
  109. data/spec/the_sortable_tree_app/test/functional/inventory/category_controller_test.rb +14 -0
  110. data/spec/the_sortable_tree_app/test/performance/browsing_test.rb +12 -0
  111. data/spec/the_sortable_tree_app/test/test_helper.rb +13 -0
  112. data/spec/the_sortable_tree_app/test/unit/admin/page_test.rb +7 -0
  113. data/spec/the_sortable_tree_app/test/unit/article_category_test.rb +7 -0
  114. data/spec/the_sortable_tree_app/test/unit/comment_test.rb +7 -0
  115. data/spec/the_sortable_tree_app/test/unit/helpers/inventory/category_helper_test.rb +4 -0
  116. data/spec/the_sortable_tree_app/test/unit/inventory/category_test.rb +7 -0
  117. data/spec/the_sortable_tree_app/tmp/cache/assets/C3B/4B0/sprockets%2F4143dd2388a3252adb1804945871a002 +0 -0
  118. data/spec/the_sortable_tree_app/tmp/cache/assets/C50/BE0/sprockets%2Fa139ccc37272f09e8337565114558a42 +0 -0
  119. data/spec/the_sortable_tree_app/tmp/cache/assets/C6B/530/sprockets%2F54e7598ead46f414a5474993750992a6 +0 -0
  120. data/spec/the_sortable_tree_app/tmp/cache/assets/C77/560/sprockets%2F813f25e4a0780001a1f80f83ea522987 +0 -0
  121. data/spec/the_sortable_tree_app/tmp/cache/assets/C81/090/sprockets%2F5338822ad86a0a0079f990225ed9037d +0 -0
  122. data/spec/the_sortable_tree_app/tmp/cache/assets/C9A/730/sprockets%2F12ff81fe7a0c213d511536b1a9712613 +0 -0
  123. data/spec/the_sortable_tree_app/tmp/cache/assets/C9B/370/sprockets%2F4b19719024eb862bb0b40c2903b2444f +0 -0
  124. data/spec/the_sortable_tree_app/tmp/cache/assets/CB1/D00/sprockets%2F90a69052f559169cc0338bb9e7b2071c +0 -0
  125. data/spec/the_sortable_tree_app/tmp/cache/assets/CC9/ED0/sprockets%2Fa98594ed698bb2f25c32497158b7346f +0 -0
  126. data/spec/the_sortable_tree_app/tmp/cache/assets/CD5/540/sprockets%2Fa2e03c2a79820a23e494e3b8459c32f0 +0 -0
  127. data/spec/the_sortable_tree_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  128. data/spec/the_sortable_tree_app/tmp/cache/assets/CDC/B70/sprockets%2Fb8655a3e58029cd981112a7ce421db65 +0 -0
  129. data/spec/the_sortable_tree_app/tmp/cache/assets/CE9/BD0/sprockets%2F22287637edb361485c371efd7817acc7 +0 -0
  130. data/spec/the_sortable_tree_app/tmp/cache/assets/CEA/2D0/sprockets%2F77e58093f6053b9964ca2b36bd34a94d +0 -0
  131. data/spec/the_sortable_tree_app/tmp/cache/assets/CEE/3C0/sprockets%2Ff078d8a33d271e8bf062dfd978343537 +0 -0
  132. data/spec/the_sortable_tree_app/tmp/cache/assets/CF0/590/sprockets%2F66914ec5c90e7fa7285377a17c4b94e3 +0 -0
  133. data/spec/the_sortable_tree_app/tmp/cache/assets/CF8/C70/sprockets%2Fb086216a7cea4b05f2d10a54a1508c86 +0 -0
  134. data/spec/the_sortable_tree_app/tmp/cache/assets/D07/110/sprockets%2F4a6961a0c735dbbba76f35e606f34027 +0 -0
  135. data/spec/the_sortable_tree_app/tmp/cache/assets/D0A/840/sprockets%2F38149c503a4865c81cef8cc0226b6a3d +0 -0
  136. data/spec/the_sortable_tree_app/tmp/cache/assets/D0E/CE0/sprockets%2F54005c20e9fd12f1d6d7bf9f7080f822 +0 -0
  137. data/spec/the_sortable_tree_app/tmp/cache/assets/D0F/540/sprockets%2Ffdff04173da67c582219de85c136320f +0 -0
  138. data/spec/the_sortable_tree_app/tmp/cache/assets/D14/170/sprockets%2F2a860136457d8b8f4fedb7bcb3962136 +0 -0
  139. data/spec/the_sortable_tree_app/tmp/cache/assets/D14/F00/sprockets%2Fb0d459b10f17bcc3955798772c7bac18 +0 -0
  140. data/spec/the_sortable_tree_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  141. data/spec/the_sortable_tree_app/tmp/cache/assets/D38/E20/sprockets%2F0e50ead9c50e79817fc32184e900ba5a +0 -0
  142. data/spec/the_sortable_tree_app/tmp/cache/assets/D42/760/sprockets%2Fa26ac9237d11ffa65fca30c861979e36 +0 -0
  143. data/spec/the_sortable_tree_app/tmp/cache/assets/D47/BE0/sprockets%2F544a4972c2f7438e092ab50cbc8c9de9 +0 -0
  144. data/spec/the_sortable_tree_app/tmp/cache/assets/D48/300/sprockets%2F392aba9fd44f378041913c9f0edef429 +0 -0
  145. data/spec/the_sortable_tree_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  146. data/spec/the_sortable_tree_app/tmp/cache/assets/D51/420/sprockets%2F8497f4db9b07de37eee54184fd031e93 +0 -0
  147. data/spec/the_sortable_tree_app/tmp/cache/assets/D59/D90/sprockets%2Ff09bd16e880b660cbf49848bc97f29e7 +0 -0
  148. data/spec/the_sortable_tree_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  149. data/spec/the_sortable_tree_app/tmp/cache/assets/D5F/560/sprockets%2Fa07f8d3d20c8ad7093220eb04c67a6cd +0 -0
  150. data/spec/the_sortable_tree_app/tmp/cache/assets/D7C/D70/sprockets%2F8c4e6f6fc945e97cae12d8218a21f8b3 +0 -0
  151. data/spec/the_sortable_tree_app/tmp/cache/assets/DA2/800/sprockets%2F21a7cffa498af4bfb7a0849616b41dd8 +0 -0
  152. data/spec/the_sortable_tree_app/tmp/cache/assets/DAE/A40/sprockets%2F78e36ff8ef2fc355f82b30e0bfb397b5 +0 -0
  153. data/spec/the_sortable_tree_app/tmp/cache/assets/DD3/4C0/sprockets%2Fb4b73a83da8ea301f18e578dc3d9dde6 +0 -0
  154. data/spec/the_sortable_tree_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  155. data/spec/the_sortable_tree_app/tmp/cache/assets/DF1/8B0/sprockets%2F2f0d2d00353acefe637b5338a9abfdfb +0 -0
  156. data/spec/the_sortable_tree_app/tmp/cache/assets/E03/A20/sprockets%2F74f7c02ea34e1ecfcb83bff7c167c75d +0 -0
  157. data/spec/the_sortable_tree_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  158. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/nested_options.css.scssc +0 -0
  159. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/sortable_tree.css.scssc +0 -0
  160. data/spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/tree.css.scssc +0 -0
  161. metadata +340 -110
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: the_sortable_tree
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-18 00:00:00.000000000 Z
12
+ date: 2013-06-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: !ruby/object:Gem::Requirement
16
+ requirement: &79401560 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,15 +21,10 @@ dependencies:
21
21
  version: '3.1'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '3.1'
24
+ version_requirements: *79401560
30
25
  - !ruby/object:Gem::Dependency
31
26
  name: sqlite3
32
- requirement: !ruby/object:Gem::Requirement
27
+ requirement: &79401350 !ruby/object:Gem::Requirement
33
28
  none: false
34
29
  requirements:
35
30
  - - ! '>='
@@ -37,15 +32,10 @@ dependencies:
37
32
  version: '0'
38
33
  type: :development
39
34
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '0'
35
+ version_requirements: *79401350
46
36
  - !ruby/object:Gem::Dependency
47
37
  name: rspec
48
- requirement: !ruby/object:Gem::Requirement
38
+ requirement: &79401120 !ruby/object:Gem::Requirement
49
39
  none: false
50
40
  requirements:
51
41
  - - ! '>='
@@ -53,15 +43,10 @@ dependencies:
53
43
  version: '0'
54
44
  type: :development
55
45
  prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ! '>='
60
- - !ruby/object:Gem::Version
61
- version: '0'
46
+ version_requirements: *79401120
62
47
  - !ruby/object:Gem::Dependency
63
48
  name: rspec-rails
64
- requirement: !ruby/object:Gem::Requirement
49
+ requirement: &79400910 !ruby/object:Gem::Requirement
65
50
  none: false
66
51
  requirements:
67
52
  - - ! '>='
@@ -69,12 +54,7 @@ dependencies:
69
54
  version: '0'
70
55
  type: :development
71
56
  prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ! '>='
76
- - !ruby/object:Gem::Version
77
- version: '0'
57
+ version_requirements: *79400910
78
58
  description: Drag&Drop GUI for awesom_nested_set. Render Tree Helper. Very fast! Ready
79
59
  for Rails 4
80
60
  email:
@@ -85,69 +65,194 @@ extra_rdoc_files:
85
65
  - README.md
86
66
  files:
87
67
  - app/controllers/the_sortable_tree_controller.rb
88
- - app/helpers/render_sortable_tree_helper.rb
89
- - app/helpers/render_tree_helper.rb
90
- - app/helpers/render_expandable_tree_helper.rb
91
- - app/helpers/the_sortable_tree_helper.rb
92
- - app/helpers/render_nested_options_helper.rb
93
- - app/views/sortable/client/_tree.html.erb
94
- - app/views/tree/client/_tree.html.erb
95
- - app/assets/images/iconza/icons/red_delete.png
68
+ - app/assets/images/iconza/icons/edit.png
96
69
  - app/assets/images/iconza/icons/red_edit.png
97
- - app/assets/images/iconza/icons/red_add.png
70
+ - app/assets/images/iconza/icons/red_delete.png
98
71
  - app/assets/images/iconza/icons/red_move.png
72
+ - app/assets/images/iconza/icons/red_add.png
99
73
  - app/assets/images/iconza/icons/move.png
100
- - app/assets/images/iconza/icons/add.png
101
74
  - app/assets/images/iconza/icons/delete.png
102
- - app/assets/images/iconza/icons/edit.png
75
+ - app/assets/images/iconza/icons/add.png
103
76
  - app/assets/stylesheets/nested_options.css.scss
104
- - app/assets/stylesheets/sortable_tree.css.scss
105
77
  - app/assets/stylesheets/tree.css.scss
106
78
  - app/assets/stylesheets/expandable_tree.css.scss
79
+ - app/assets/stylesheets/sortable_tree.css.scss
107
80
  - app/assets/javascripts/jquery.ui.nestedSortable.js
108
81
  - app/assets/javascripts/render_tree_helper.js.coffee
109
- - app/assets/javascripts/expandable_tree/initializer.js.coffee
110
82
  - app/assets/javascripts/sortable_tree/initializer.js.coffee
111
- - lib/fake.example
112
- - lib/generators/the_sortable_tree/views_generator.rb
83
+ - app/assets/javascripts/expandable_tree/initializer.js.coffee
84
+ - app/views/sortable/client/_tree.html.erb
85
+ - app/views/tree/client/_tree.html.erb
86
+ - app/helpers/render_tree_helper.rb
87
+ - app/helpers/the_sortable_tree_helper.rb
88
+ - app/helpers/render_sortable_tree_helper.rb
89
+ - app/helpers/render_expandable_tree_helper.rb
90
+ - app/helpers/render_nested_options_helper.rb
113
91
  - lib/the_sortable_tree/version.rb
114
92
  - lib/the_sortable_tree/engine.rb
93
+ - lib/generators/the_sortable_tree/views_generator.rb
94
+ - lib/fake.example
115
95
  - lib/the_sortable_tree.rb
116
96
  - MIT-LICENSE
117
97
  - Rakefile
118
98
  - README.md
119
- - spec/controlllers/controller_mixin_spec.rb
120
- - spec/dummy/Rakefile
121
- - spec/dummy/db/test.sqlite3
122
- - spec/dummy/config.ru
123
- - spec/dummy/log/test.log
124
- - spec/dummy/config/boot.rb
125
- - spec/dummy/config/application.rb
126
- - spec/dummy/config/locales/en.yml
127
- - spec/dummy/config/environments/development.rb
128
- - spec/dummy/config/environments/test.rb
129
- - spec/dummy/config/environments/production.rb
130
- - spec/dummy/config/routes.rb
131
- - spec/dummy/config/initializers/backtrace_silencers.rb
132
- - spec/dummy/config/initializers/inflections.rb
133
- - spec/dummy/config/initializers/session_store.rb
134
- - spec/dummy/config/initializers/wrap_parameters.rb
135
- - spec/dummy/config/initializers/secret_token.rb
136
- - spec/dummy/config/initializers/mime_types.rb
137
- - spec/dummy/config/environment.rb
138
- - spec/dummy/config/database.yml
139
- - spec/dummy/script/rails
140
- - spec/dummy/app/controllers/tests_controller.rb
141
- - spec/dummy/app/controllers/application_controller.rb
142
- - spec/dummy/app/views/layouts/application.html.erb
143
- - spec/dummy/app/assets/stylesheets/application.css
144
- - spec/dummy/app/assets/javascripts/application.js
145
- - spec/dummy/public/500.html
146
- - spec/dummy/public/favicon.ico
147
- - spec/dummy/public/422.html
148
- - spec/dummy/public/404.html
149
- - spec/dummy/README.rdoc
150
- - spec/spec_helper.rb
99
+ - spec/the_sortable_tree_app/doc/README_FOR_APP
100
+ - spec/the_sortable_tree_app/Gemfile.lock
101
+ - spec/the_sortable_tree_app/README.md
102
+ - spec/the_sortable_tree_app/Rakefile
103
+ - spec/the_sortable_tree_app/config.ru
104
+ - spec/the_sortable_tree_app/config/boot.rb
105
+ - spec/the_sortable_tree_app/config/application.rb
106
+ - spec/the_sortable_tree_app/config/environment.rb
107
+ - spec/the_sortable_tree_app/config/locales/en.yml
108
+ - spec/the_sortable_tree_app/config/initializers/session_store.rb
109
+ - spec/the_sortable_tree_app/config/initializers/backtrace_silencers.rb
110
+ - spec/the_sortable_tree_app/config/initializers/mime_types.rb
111
+ - spec/the_sortable_tree_app/config/initializers/wrap_parameters.rb
112
+ - spec/the_sortable_tree_app/config/initializers/secret_token.rb
113
+ - spec/the_sortable_tree_app/config/initializers/inflections.rb
114
+ - spec/the_sortable_tree_app/config/routes.rb
115
+ - spec/the_sortable_tree_app/config/environments/development.rb
116
+ - spec/the_sortable_tree_app/config/environments/test.rb
117
+ - spec/the_sortable_tree_app/config/environments/production.rb
118
+ - spec/the_sortable_tree_app/config/database.yml
119
+ - spec/the_sortable_tree_app/public/500.html
120
+ - spec/the_sortable_tree_app/public/404.html
121
+ - spec/the_sortable_tree_app/public/422.html
122
+ - spec/the_sortable_tree_app/public/robots.txt
123
+ - spec/the_sortable_tree_app/public/favicon.ico
124
+ - spec/the_sortable_tree_app/Gemfile
125
+ - spec/the_sortable_tree_app/db/production.db
126
+ - spec/the_sortable_tree_app/db/test.db
127
+ - spec/the_sortable_tree_app/db/migrate/20130128160328_create_admin_pages.rb
128
+ - spec/the_sortable_tree_app/db/migrate/20120211053457_create_pages.rb
129
+ - spec/the_sortable_tree_app/db/migrate/20120508093823_create_inventory_categories.rb
130
+ - spec/the_sortable_tree_app/db/migrate/20120503173258_create_article_categories.rb
131
+ - spec/the_sortable_tree_app/db/seeds.rb
132
+ - spec/the_sortable_tree_app/db/development.db
133
+ - spec/the_sortable_tree_app/db/schema.rb
134
+ - spec/the_sortable_tree_app/tmp/cache/assets/C9B/370/sprockets%2F4b19719024eb862bb0b40c2903b2444f
135
+ - spec/the_sortable_tree_app/tmp/cache/assets/CB1/D00/sprockets%2F90a69052f559169cc0338bb9e7b2071c
136
+ - spec/the_sortable_tree_app/tmp/cache/assets/C50/BE0/sprockets%2Fa139ccc37272f09e8337565114558a42
137
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0E/CE0/sprockets%2F54005c20e9fd12f1d6d7bf9f7080f822
138
+ - spec/the_sortable_tree_app/tmp/cache/assets/D7C/D70/sprockets%2F8c4e6f6fc945e97cae12d8218a21f8b3
139
+ - spec/the_sortable_tree_app/tmp/cache/assets/CDC/B70/sprockets%2Fb8655a3e58029cd981112a7ce421db65
140
+ - spec/the_sortable_tree_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
141
+ - spec/the_sortable_tree_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
142
+ - spec/the_sortable_tree_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
143
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0F/540/sprockets%2Ffdff04173da67c582219de85c136320f
144
+ - spec/the_sortable_tree_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
145
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0A/840/sprockets%2F38149c503a4865c81cef8cc0226b6a3d
146
+ - spec/the_sortable_tree_app/tmp/cache/assets/D38/E20/sprockets%2F0e50ead9c50e79817fc32184e900ba5a
147
+ - spec/the_sortable_tree_app/tmp/cache/assets/CEA/2D0/sprockets%2F77e58093f6053b9964ca2b36bd34a94d
148
+ - spec/the_sortable_tree_app/tmp/cache/assets/C3B/4B0/sprockets%2F4143dd2388a3252adb1804945871a002
149
+ - spec/the_sortable_tree_app/tmp/cache/assets/C9A/730/sprockets%2F12ff81fe7a0c213d511536b1a9712613
150
+ - spec/the_sortable_tree_app/tmp/cache/assets/CE9/BD0/sprockets%2F22287637edb361485c371efd7817acc7
151
+ - spec/the_sortable_tree_app/tmp/cache/assets/DF1/8B0/sprockets%2F2f0d2d00353acefe637b5338a9abfdfb
152
+ - spec/the_sortable_tree_app/tmp/cache/assets/DAE/A40/sprockets%2F78e36ff8ef2fc355f82b30e0bfb397b5
153
+ - spec/the_sortable_tree_app/tmp/cache/assets/D5F/560/sprockets%2Fa07f8d3d20c8ad7093220eb04c67a6cd
154
+ - spec/the_sortable_tree_app/tmp/cache/assets/DD3/4C0/sprockets%2Fb4b73a83da8ea301f18e578dc3d9dde6
155
+ - spec/the_sortable_tree_app/tmp/cache/assets/E03/A20/sprockets%2F74f7c02ea34e1ecfcb83bff7c167c75d
156
+ - spec/the_sortable_tree_app/tmp/cache/assets/CD5/540/sprockets%2Fa2e03c2a79820a23e494e3b8459c32f0
157
+ - spec/the_sortable_tree_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
158
+ - spec/the_sortable_tree_app/tmp/cache/assets/CF8/C70/sprockets%2Fb086216a7cea4b05f2d10a54a1508c86
159
+ - spec/the_sortable_tree_app/tmp/cache/assets/D07/110/sprockets%2F4a6961a0c735dbbba76f35e606f34027
160
+ - spec/the_sortable_tree_app/tmp/cache/assets/D48/300/sprockets%2F392aba9fd44f378041913c9f0edef429
161
+ - spec/the_sortable_tree_app/tmp/cache/assets/CF0/590/sprockets%2F66914ec5c90e7fa7285377a17c4b94e3
162
+ - spec/the_sortable_tree_app/tmp/cache/assets/D51/420/sprockets%2F8497f4db9b07de37eee54184fd031e93
163
+ - spec/the_sortable_tree_app/tmp/cache/assets/C6B/530/sprockets%2F54e7598ead46f414a5474993750992a6
164
+ - spec/the_sortable_tree_app/tmp/cache/assets/D59/D90/sprockets%2Ff09bd16e880b660cbf49848bc97f29e7
165
+ - spec/the_sortable_tree_app/tmp/cache/assets/DA2/800/sprockets%2F21a7cffa498af4bfb7a0849616b41dd8
166
+ - spec/the_sortable_tree_app/tmp/cache/assets/CC9/ED0/sprockets%2Fa98594ed698bb2f25c32497158b7346f
167
+ - spec/the_sortable_tree_app/tmp/cache/assets/CEE/3C0/sprockets%2Ff078d8a33d271e8bf062dfd978343537
168
+ - spec/the_sortable_tree_app/tmp/cache/assets/C77/560/sprockets%2F813f25e4a0780001a1f80f83ea522987
169
+ - spec/the_sortable_tree_app/tmp/cache/assets/D14/170/sprockets%2F2a860136457d8b8f4fedb7bcb3962136
170
+ - spec/the_sortable_tree_app/tmp/cache/assets/D14/F00/sprockets%2Fb0d459b10f17bcc3955798772c7bac18
171
+ - spec/the_sortable_tree_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
172
+ - spec/the_sortable_tree_app/tmp/cache/assets/D42/760/sprockets%2Fa26ac9237d11ffa65fca30c861979e36
173
+ - spec/the_sortable_tree_app/tmp/cache/assets/C81/090/sprockets%2F5338822ad86a0a0079f990225ed9037d
174
+ - spec/the_sortable_tree_app/tmp/cache/assets/D47/BE0/sprockets%2F544a4972c2f7438e092ab50cbc8c9de9
175
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/tree.css.scssc
176
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/sortable_tree.css.scssc
177
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/nested_options.css.scssc
178
+ - spec/the_sortable_tree_app/log/development.log
179
+ - spec/the_sortable_tree_app/log/production.log
180
+ - spec/the_sortable_tree_app/test/test_helper.rb
181
+ - spec/the_sortable_tree_app/test/performance/browsing_test.rb
182
+ - spec/the_sortable_tree_app/test/unit/article_category_test.rb
183
+ - spec/the_sortable_tree_app/test/unit/comment_test.rb
184
+ - spec/the_sortable_tree_app/test/unit/helpers/inventory/category_helper_test.rb
185
+ - spec/the_sortable_tree_app/test/unit/inventory/category_test.rb
186
+ - spec/the_sortable_tree_app/test/unit/admin/page_test.rb
187
+ - spec/the_sortable_tree_app/test/fixtures/article_categories.yml
188
+ - spec/the_sortable_tree_app/test/fixtures/comments.yml
189
+ - spec/the_sortable_tree_app/test/fixtures/inventory/categories.yml
190
+ - spec/the_sortable_tree_app/test/fixtures/admin/pages.yml
191
+ - spec/the_sortable_tree_app/test/functional/inventory/category_controller_test.rb
192
+ - spec/the_sortable_tree_app/app/controllers/article_categories_controller.rb
193
+ - spec/the_sortable_tree_app/app/controllers/welcome_controller.rb
194
+ - spec/the_sortable_tree_app/app/controllers/application_controller.rb
195
+ - spec/the_sortable_tree_app/app/controllers/inventory/categories_controller.rb
196
+ - spec/the_sortable_tree_app/app/controllers/pages_controller.rb
197
+ - spec/the_sortable_tree_app/app/controllers/admin/pages_controller.rb
198
+ - spec/the_sortable_tree_app/app/assets/images/rails.png
199
+ - spec/the_sortable_tree_app/app/assets/stylesheets/application.css
200
+ - spec/the_sortable_tree_app/app/assets/javascripts/application.js
201
+ - spec/the_sortable_tree_app/app/models/inventory.rb
202
+ - spec/the_sortable_tree_app/app/models/page.rb
203
+ - spec/the_sortable_tree_app/app/models/inventory/category.rb
204
+ - spec/the_sortable_tree_app/app/models/admin.rb
205
+ - spec/the_sortable_tree_app/app/models/article_category.rb
206
+ - spec/the_sortable_tree_app/app/models/admin/page.rb
207
+ - spec/the_sortable_tree_app/app/views/layouts/application.html.erb
208
+ - spec/the_sortable_tree_app/app/views/inventory/categories/manage.html.haml
209
+ - spec/the_sortable_tree_app/app/views/inventory/categories/index.html.haml
210
+ - spec/the_sortable_tree_app/app/views/welcome/index.html.haml
211
+ - spec/the_sortable_tree_app/app/views/article_categories/manage.html.haml
212
+ - spec/the_sortable_tree_app/app/views/article_categories/index.html.haml
213
+ - spec/the_sortable_tree_app/app/views/admin/pages/node_manage.html.haml
214
+ - spec/the_sortable_tree_app/app/views/admin/pages/manage.html.haml
215
+ - spec/the_sortable_tree_app/app/views/admin/pages/nested_options.html.haml
216
+ - spec/the_sortable_tree_app/app/views/admin/pages/index.html.haml
217
+ - spec/the_sortable_tree_app/app/views/admin/pages/namespaced_link.html.haml
218
+ - spec/the_sortable_tree_app/app/views/pages/expand_children.html.haml
219
+ - spec/the_sortable_tree_app/app/views/pages/manage.html.haml
220
+ - spec/the_sortable_tree_app/app/views/pages/expand.html.haml
221
+ - spec/the_sortable_tree_app/app/views/pages/nested_options.html.haml
222
+ - spec/the_sortable_tree_app/app/views/pages/index.html.haml
223
+ - spec/the_sortable_tree_app/script/rails
224
+ - spec/old_tests/controlllers/controller_mixin_spec.rb
225
+ - spec/old_tests/spec_helper.rb
226
+ - spec/old_tests/dummy/README.rdoc
227
+ - spec/old_tests/dummy/Rakefile
228
+ - spec/old_tests/dummy/config.ru
229
+ - spec/old_tests/dummy/config/boot.rb
230
+ - spec/old_tests/dummy/config/application.rb
231
+ - spec/old_tests/dummy/config/environment.rb
232
+ - spec/old_tests/dummy/config/locales/en.yml
233
+ - spec/old_tests/dummy/config/initializers/session_store.rb
234
+ - spec/old_tests/dummy/config/initializers/backtrace_silencers.rb
235
+ - spec/old_tests/dummy/config/initializers/mime_types.rb
236
+ - spec/old_tests/dummy/config/initializers/wrap_parameters.rb
237
+ - spec/old_tests/dummy/config/initializers/secret_token.rb
238
+ - spec/old_tests/dummy/config/initializers/inflections.rb
239
+ - spec/old_tests/dummy/config/routes.rb
240
+ - spec/old_tests/dummy/config/environments/development.rb
241
+ - spec/old_tests/dummy/config/environments/test.rb
242
+ - spec/old_tests/dummy/config/environments/production.rb
243
+ - spec/old_tests/dummy/config/database.yml
244
+ - spec/old_tests/dummy/public/500.html
245
+ - spec/old_tests/dummy/public/404.html
246
+ - spec/old_tests/dummy/public/422.html
247
+ - spec/old_tests/dummy/public/favicon.ico
248
+ - spec/old_tests/dummy/db/test.sqlite3
249
+ - spec/old_tests/dummy/log/test.log
250
+ - spec/old_tests/dummy/app/controllers/application_controller.rb
251
+ - spec/old_tests/dummy/app/controllers/tests_controller.rb
252
+ - spec/old_tests/dummy/app/assets/stylesheets/application.css
253
+ - spec/old_tests/dummy/app/assets/javascripts/application.js
254
+ - spec/old_tests/dummy/app/views/layouts/application.html.erb
255
+ - spec/old_tests/dummy/script/rails
151
256
  homepage: https://github.com/the-teacher/the_sortable_tree
152
257
  licenses: []
153
258
  post_install_message:
@@ -168,41 +273,166 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
273
  version: '0'
169
274
  requirements: []
170
275
  rubyforge_project: the_sortable_tree
171
- rubygems_version: 1.8.25
276
+ rubygems_version: 1.8.15
172
277
  signing_key:
173
278
  specification_version: 3
174
279
  summary: Drag&Drop GUI for awesom_nested_set. Render Tree Helper. Very fast! Ready
175
280
  for Rails 4
176
281
  test_files:
177
- - spec/controlllers/controller_mixin_spec.rb
178
- - spec/dummy/Rakefile
179
- - spec/dummy/db/test.sqlite3
180
- - spec/dummy/config.ru
181
- - spec/dummy/log/test.log
182
- - spec/dummy/config/boot.rb
183
- - spec/dummy/config/application.rb
184
- - spec/dummy/config/locales/en.yml
185
- - spec/dummy/config/environments/development.rb
186
- - spec/dummy/config/environments/test.rb
187
- - spec/dummy/config/environments/production.rb
188
- - spec/dummy/config/routes.rb
189
- - spec/dummy/config/initializers/backtrace_silencers.rb
190
- - spec/dummy/config/initializers/inflections.rb
191
- - spec/dummy/config/initializers/session_store.rb
192
- - spec/dummy/config/initializers/wrap_parameters.rb
193
- - spec/dummy/config/initializers/secret_token.rb
194
- - spec/dummy/config/initializers/mime_types.rb
195
- - spec/dummy/config/environment.rb
196
- - spec/dummy/config/database.yml
197
- - spec/dummy/script/rails
198
- - spec/dummy/app/controllers/tests_controller.rb
199
- - spec/dummy/app/controllers/application_controller.rb
200
- - spec/dummy/app/views/layouts/application.html.erb
201
- - spec/dummy/app/assets/stylesheets/application.css
202
- - spec/dummy/app/assets/javascripts/application.js
203
- - spec/dummy/public/500.html
204
- - spec/dummy/public/favicon.ico
205
- - spec/dummy/public/422.html
206
- - spec/dummy/public/404.html
207
- - spec/dummy/README.rdoc
208
- - spec/spec_helper.rb
282
+ - spec/the_sortable_tree_app/doc/README_FOR_APP
283
+ - spec/the_sortable_tree_app/Gemfile.lock
284
+ - spec/the_sortable_tree_app/README.md
285
+ - spec/the_sortable_tree_app/Rakefile
286
+ - spec/the_sortable_tree_app/config.ru
287
+ - spec/the_sortable_tree_app/config/boot.rb
288
+ - spec/the_sortable_tree_app/config/application.rb
289
+ - spec/the_sortable_tree_app/config/environment.rb
290
+ - spec/the_sortable_tree_app/config/locales/en.yml
291
+ - spec/the_sortable_tree_app/config/initializers/session_store.rb
292
+ - spec/the_sortable_tree_app/config/initializers/backtrace_silencers.rb
293
+ - spec/the_sortable_tree_app/config/initializers/mime_types.rb
294
+ - spec/the_sortable_tree_app/config/initializers/wrap_parameters.rb
295
+ - spec/the_sortable_tree_app/config/initializers/secret_token.rb
296
+ - spec/the_sortable_tree_app/config/initializers/inflections.rb
297
+ - spec/the_sortable_tree_app/config/routes.rb
298
+ - spec/the_sortable_tree_app/config/environments/development.rb
299
+ - spec/the_sortable_tree_app/config/environments/test.rb
300
+ - spec/the_sortable_tree_app/config/environments/production.rb
301
+ - spec/the_sortable_tree_app/config/database.yml
302
+ - spec/the_sortable_tree_app/public/500.html
303
+ - spec/the_sortable_tree_app/public/404.html
304
+ - spec/the_sortable_tree_app/public/422.html
305
+ - spec/the_sortable_tree_app/public/robots.txt
306
+ - spec/the_sortable_tree_app/public/favicon.ico
307
+ - spec/the_sortable_tree_app/Gemfile
308
+ - spec/the_sortable_tree_app/db/production.db
309
+ - spec/the_sortable_tree_app/db/test.db
310
+ - spec/the_sortable_tree_app/db/migrate/20130128160328_create_admin_pages.rb
311
+ - spec/the_sortable_tree_app/db/migrate/20120211053457_create_pages.rb
312
+ - spec/the_sortable_tree_app/db/migrate/20120508093823_create_inventory_categories.rb
313
+ - spec/the_sortable_tree_app/db/migrate/20120503173258_create_article_categories.rb
314
+ - spec/the_sortable_tree_app/db/seeds.rb
315
+ - spec/the_sortable_tree_app/db/development.db
316
+ - spec/the_sortable_tree_app/db/schema.rb
317
+ - spec/the_sortable_tree_app/tmp/cache/assets/C9B/370/sprockets%2F4b19719024eb862bb0b40c2903b2444f
318
+ - spec/the_sortable_tree_app/tmp/cache/assets/CB1/D00/sprockets%2F90a69052f559169cc0338bb9e7b2071c
319
+ - spec/the_sortable_tree_app/tmp/cache/assets/C50/BE0/sprockets%2Fa139ccc37272f09e8337565114558a42
320
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0E/CE0/sprockets%2F54005c20e9fd12f1d6d7bf9f7080f822
321
+ - spec/the_sortable_tree_app/tmp/cache/assets/D7C/D70/sprockets%2F8c4e6f6fc945e97cae12d8218a21f8b3
322
+ - spec/the_sortable_tree_app/tmp/cache/assets/CDC/B70/sprockets%2Fb8655a3e58029cd981112a7ce421db65
323
+ - spec/the_sortable_tree_app/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705
324
+ - spec/the_sortable_tree_app/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953
325
+ - spec/the_sortable_tree_app/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6
326
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0F/540/sprockets%2Ffdff04173da67c582219de85c136320f
327
+ - spec/the_sortable_tree_app/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994
328
+ - spec/the_sortable_tree_app/tmp/cache/assets/D0A/840/sprockets%2F38149c503a4865c81cef8cc0226b6a3d
329
+ - spec/the_sortable_tree_app/tmp/cache/assets/D38/E20/sprockets%2F0e50ead9c50e79817fc32184e900ba5a
330
+ - spec/the_sortable_tree_app/tmp/cache/assets/CEA/2D0/sprockets%2F77e58093f6053b9964ca2b36bd34a94d
331
+ - spec/the_sortable_tree_app/tmp/cache/assets/C3B/4B0/sprockets%2F4143dd2388a3252adb1804945871a002
332
+ - spec/the_sortable_tree_app/tmp/cache/assets/C9A/730/sprockets%2F12ff81fe7a0c213d511536b1a9712613
333
+ - spec/the_sortable_tree_app/tmp/cache/assets/CE9/BD0/sprockets%2F22287637edb361485c371efd7817acc7
334
+ - spec/the_sortable_tree_app/tmp/cache/assets/DF1/8B0/sprockets%2F2f0d2d00353acefe637b5338a9abfdfb
335
+ - spec/the_sortable_tree_app/tmp/cache/assets/DAE/A40/sprockets%2F78e36ff8ef2fc355f82b30e0bfb397b5
336
+ - spec/the_sortable_tree_app/tmp/cache/assets/D5F/560/sprockets%2Fa07f8d3d20c8ad7093220eb04c67a6cd
337
+ - spec/the_sortable_tree_app/tmp/cache/assets/DD3/4C0/sprockets%2Fb4b73a83da8ea301f18e578dc3d9dde6
338
+ - spec/the_sortable_tree_app/tmp/cache/assets/E03/A20/sprockets%2F74f7c02ea34e1ecfcb83bff7c167c75d
339
+ - spec/the_sortable_tree_app/tmp/cache/assets/CD5/540/sprockets%2Fa2e03c2a79820a23e494e3b8459c32f0
340
+ - spec/the_sortable_tree_app/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af
341
+ - spec/the_sortable_tree_app/tmp/cache/assets/CF8/C70/sprockets%2Fb086216a7cea4b05f2d10a54a1508c86
342
+ - spec/the_sortable_tree_app/tmp/cache/assets/D07/110/sprockets%2F4a6961a0c735dbbba76f35e606f34027
343
+ - spec/the_sortable_tree_app/tmp/cache/assets/D48/300/sprockets%2F392aba9fd44f378041913c9f0edef429
344
+ - spec/the_sortable_tree_app/tmp/cache/assets/CF0/590/sprockets%2F66914ec5c90e7fa7285377a17c4b94e3
345
+ - spec/the_sortable_tree_app/tmp/cache/assets/D51/420/sprockets%2F8497f4db9b07de37eee54184fd031e93
346
+ - spec/the_sortable_tree_app/tmp/cache/assets/C6B/530/sprockets%2F54e7598ead46f414a5474993750992a6
347
+ - spec/the_sortable_tree_app/tmp/cache/assets/D59/D90/sprockets%2Ff09bd16e880b660cbf49848bc97f29e7
348
+ - spec/the_sortable_tree_app/tmp/cache/assets/DA2/800/sprockets%2F21a7cffa498af4bfb7a0849616b41dd8
349
+ - spec/the_sortable_tree_app/tmp/cache/assets/CC9/ED0/sprockets%2Fa98594ed698bb2f25c32497158b7346f
350
+ - spec/the_sortable_tree_app/tmp/cache/assets/CEE/3C0/sprockets%2Ff078d8a33d271e8bf062dfd978343537
351
+ - spec/the_sortable_tree_app/tmp/cache/assets/C77/560/sprockets%2F813f25e4a0780001a1f80f83ea522987
352
+ - spec/the_sortable_tree_app/tmp/cache/assets/D14/170/sprockets%2F2a860136457d8b8f4fedb7bcb3962136
353
+ - spec/the_sortable_tree_app/tmp/cache/assets/D14/F00/sprockets%2Fb0d459b10f17bcc3955798772c7bac18
354
+ - spec/the_sortable_tree_app/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655
355
+ - spec/the_sortable_tree_app/tmp/cache/assets/D42/760/sprockets%2Fa26ac9237d11ffa65fca30c861979e36
356
+ - spec/the_sortable_tree_app/tmp/cache/assets/C81/090/sprockets%2F5338822ad86a0a0079f990225ed9037d
357
+ - spec/the_sortable_tree_app/tmp/cache/assets/D47/BE0/sprockets%2F544a4972c2f7438e092ab50cbc8c9de9
358
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/tree.css.scssc
359
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/sortable_tree.css.scssc
360
+ - spec/the_sortable_tree_app/tmp/cache/sass/2255c97fc63f030a9ce238cccb311b4b1e966328/nested_options.css.scssc
361
+ - spec/the_sortable_tree_app/log/development.log
362
+ - spec/the_sortable_tree_app/log/production.log
363
+ - spec/the_sortable_tree_app/test/test_helper.rb
364
+ - spec/the_sortable_tree_app/test/performance/browsing_test.rb
365
+ - spec/the_sortable_tree_app/test/unit/article_category_test.rb
366
+ - spec/the_sortable_tree_app/test/unit/comment_test.rb
367
+ - spec/the_sortable_tree_app/test/unit/helpers/inventory/category_helper_test.rb
368
+ - spec/the_sortable_tree_app/test/unit/inventory/category_test.rb
369
+ - spec/the_sortable_tree_app/test/unit/admin/page_test.rb
370
+ - spec/the_sortable_tree_app/test/fixtures/article_categories.yml
371
+ - spec/the_sortable_tree_app/test/fixtures/comments.yml
372
+ - spec/the_sortable_tree_app/test/fixtures/inventory/categories.yml
373
+ - spec/the_sortable_tree_app/test/fixtures/admin/pages.yml
374
+ - spec/the_sortable_tree_app/test/functional/inventory/category_controller_test.rb
375
+ - spec/the_sortable_tree_app/app/controllers/article_categories_controller.rb
376
+ - spec/the_sortable_tree_app/app/controllers/welcome_controller.rb
377
+ - spec/the_sortable_tree_app/app/controllers/application_controller.rb
378
+ - spec/the_sortable_tree_app/app/controllers/inventory/categories_controller.rb
379
+ - spec/the_sortable_tree_app/app/controllers/pages_controller.rb
380
+ - spec/the_sortable_tree_app/app/controllers/admin/pages_controller.rb
381
+ - spec/the_sortable_tree_app/app/assets/images/rails.png
382
+ - spec/the_sortable_tree_app/app/assets/stylesheets/application.css
383
+ - spec/the_sortable_tree_app/app/assets/javascripts/application.js
384
+ - spec/the_sortable_tree_app/app/models/inventory.rb
385
+ - spec/the_sortable_tree_app/app/models/page.rb
386
+ - spec/the_sortable_tree_app/app/models/inventory/category.rb
387
+ - spec/the_sortable_tree_app/app/models/admin.rb
388
+ - spec/the_sortable_tree_app/app/models/article_category.rb
389
+ - spec/the_sortable_tree_app/app/models/admin/page.rb
390
+ - spec/the_sortable_tree_app/app/views/layouts/application.html.erb
391
+ - spec/the_sortable_tree_app/app/views/inventory/categories/manage.html.haml
392
+ - spec/the_sortable_tree_app/app/views/inventory/categories/index.html.haml
393
+ - spec/the_sortable_tree_app/app/views/welcome/index.html.haml
394
+ - spec/the_sortable_tree_app/app/views/article_categories/manage.html.haml
395
+ - spec/the_sortable_tree_app/app/views/article_categories/index.html.haml
396
+ - spec/the_sortable_tree_app/app/views/admin/pages/node_manage.html.haml
397
+ - spec/the_sortable_tree_app/app/views/admin/pages/manage.html.haml
398
+ - spec/the_sortable_tree_app/app/views/admin/pages/nested_options.html.haml
399
+ - spec/the_sortable_tree_app/app/views/admin/pages/index.html.haml
400
+ - spec/the_sortable_tree_app/app/views/admin/pages/namespaced_link.html.haml
401
+ - spec/the_sortable_tree_app/app/views/pages/expand_children.html.haml
402
+ - spec/the_sortable_tree_app/app/views/pages/manage.html.haml
403
+ - spec/the_sortable_tree_app/app/views/pages/expand.html.haml
404
+ - spec/the_sortable_tree_app/app/views/pages/nested_options.html.haml
405
+ - spec/the_sortable_tree_app/app/views/pages/index.html.haml
406
+ - spec/the_sortable_tree_app/script/rails
407
+ - spec/old_tests/controlllers/controller_mixin_spec.rb
408
+ - spec/old_tests/spec_helper.rb
409
+ - spec/old_tests/dummy/README.rdoc
410
+ - spec/old_tests/dummy/Rakefile
411
+ - spec/old_tests/dummy/config.ru
412
+ - spec/old_tests/dummy/config/boot.rb
413
+ - spec/old_tests/dummy/config/application.rb
414
+ - spec/old_tests/dummy/config/environment.rb
415
+ - spec/old_tests/dummy/config/locales/en.yml
416
+ - spec/old_tests/dummy/config/initializers/session_store.rb
417
+ - spec/old_tests/dummy/config/initializers/backtrace_silencers.rb
418
+ - spec/old_tests/dummy/config/initializers/mime_types.rb
419
+ - spec/old_tests/dummy/config/initializers/wrap_parameters.rb
420
+ - spec/old_tests/dummy/config/initializers/secret_token.rb
421
+ - spec/old_tests/dummy/config/initializers/inflections.rb
422
+ - spec/old_tests/dummy/config/routes.rb
423
+ - spec/old_tests/dummy/config/environments/development.rb
424
+ - spec/old_tests/dummy/config/environments/test.rb
425
+ - spec/old_tests/dummy/config/environments/production.rb
426
+ - spec/old_tests/dummy/config/database.yml
427
+ - spec/old_tests/dummy/public/500.html
428
+ - spec/old_tests/dummy/public/404.html
429
+ - spec/old_tests/dummy/public/422.html
430
+ - spec/old_tests/dummy/public/favicon.ico
431
+ - spec/old_tests/dummy/db/test.sqlite3
432
+ - spec/old_tests/dummy/log/test.log
433
+ - spec/old_tests/dummy/app/controllers/application_controller.rb
434
+ - spec/old_tests/dummy/app/controllers/tests_controller.rb
435
+ - spec/old_tests/dummy/app/assets/stylesheets/application.css
436
+ - spec/old_tests/dummy/app/assets/javascripts/application.js
437
+ - spec/old_tests/dummy/app/views/layouts/application.html.erb
438
+ - spec/old_tests/dummy/script/rails