saphira 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +29 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/images/saphira/icons/32x32/direction_up.png +0 -0
  5. data/app/assets/images/saphira/icons/32x32/file.png +0 -0
  6. data/app/assets/images/saphira/icons/32x32/folder.png +0 -0
  7. data/app/assets/javascripts/saphira/application.js +9 -0
  8. data/app/assets/javascripts/saphira/file_items.js +2 -0
  9. data/app/assets/stylesheets/saphira/application.css +7 -0
  10. data/app/assets/stylesheets/saphira/file_items.css +17 -0
  11. data/app/assets/stylesheets/scaffold.css +56 -0
  12. data/app/controllers/saphira/application_controller.rb +4 -0
  13. data/app/controllers/saphira/file_items_controller.rb +104 -0
  14. data/app/helpers/saphira/application_helper.rb +4 -0
  15. data/app/helpers/saphira/file_items_helper.rb +4 -0
  16. data/app/models/saphira/file_item.rb +83 -0
  17. data/app/views/layouts/saphira/application.html.erb +14 -0
  18. data/app/views/saphira/file_items/_form.html.erb +33 -0
  19. data/app/views/saphira/file_items/edit_file.html.erb +6 -0
  20. data/app/views/saphira/file_items/edit_folder.html.erb +6 -0
  21. data/app/views/saphira/file_items/index.html.erb +30 -0
  22. data/app/views/saphira/file_items/new_file.html.erb +5 -0
  23. data/app/views/saphira/file_items/new_folder.html.erb +5 -0
  24. data/app/views/saphira/file_items/show.html.erb +39 -0
  25. data/config/initializers/acts_as_taggable_on.rb +1 -0
  26. data/config/initializers/awesome_nested_set.rb +1 -0
  27. data/config/initializers/dragonfly.rb +7 -0
  28. data/config/initializers/exifr.rb +2 -0
  29. data/config/initializers/friendly_id.rb +1 -0
  30. data/config/routes.rb +5 -0
  31. data/db/migrate/20110904170134_create_saphira_file_items.rb +23 -0
  32. data/db/migrate/20110904170241_acts_as_taggable_on_migration.rb +28 -0
  33. data/lib/saphira/engine.rb +5 -0
  34. data/lib/saphira/version.rb +3 -0
  35. data/lib/saphira.rb +4 -0
  36. data/lib/tasks/saphira_tasks.rake +4 -0
  37. data/test/dummy/Guardfile +8 -0
  38. data/test/dummy/Rakefile +7 -0
  39. data/test/dummy/app/assets/javascripts/application.js +9 -0
  40. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  41. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  42. data/test/dummy/app/controllers/application_controller.rb +3 -0
  43. data/test/dummy/app/helpers/application_helper.rb +2 -0
  44. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/test/dummy/config/application.rb +45 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/cucumber.yml +8 -0
  48. data/test/dummy/config/database.yml +28 -0
  49. data/test/dummy/config/environment.rb +5 -0
  50. data/test/dummy/config/environments/development.rb +30 -0
  51. data/test/dummy/config/environments/production.rb +60 -0
  52. data/test/dummy/config/environments/test.rb +42 -0
  53. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  54. data/test/dummy/config/initializers/inflections.rb +10 -0
  55. data/test/dummy/config/initializers/mime_types.rb +5 -0
  56. data/test/dummy/config/initializers/secret_token.rb +7 -0
  57. data/test/dummy/config/initializers/session_store.rb +8 -0
  58. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/test/dummy/config/locales/en.yml +5 -0
  60. data/test/dummy/config/routes.rb +4 -0
  61. data/test/dummy/config.ru +4 -0
  62. data/test/dummy/db/development.sqlite3 +0 -0
  63. data/test/dummy/db/migrate/20110904172951_create_saphira_file_items.rb +23 -0
  64. data/test/dummy/db/migrate/20110904172952_acts_as_taggable_on_migration.rb +28 -0
  65. data/test/dummy/db/schema.rb +54 -0
  66. data/test/dummy/db/test.sqlite3 +0 -0
  67. data/test/dummy/features/manage_file_items.feature +35 -0
  68. data/test/dummy/features/step_definitions/file_item_steps.rb +18 -0
  69. data/test/dummy/features/step_definitions/web_steps.rb +211 -0
  70. data/test/dummy/features/support/env.rb +50 -0
  71. data/test/dummy/features/support/files/eos-550d-wrong-orientation.jpg +0 -0
  72. data/test/dummy/features/support/paths.rb +38 -0
  73. data/test/dummy/features/support/selectors.rb +39 -0
  74. data/test/dummy/lib/tasks/cucumber.rake +65 -0
  75. data/test/dummy/log/development.log +524 -0
  76. data/test/dummy/log/test.log +362 -0
  77. data/test/dummy/public/404.html +26 -0
  78. data/test/dummy/public/422.html +26 -0
  79. data/test/dummy/public/500.html +26 -0
  80. data/test/dummy/public/favicon.ico +0 -0
  81. data/test/dummy/script/cucumber +10 -0
  82. data/test/dummy/script/rails +6 -0
  83. data/test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG +0 -0
  84. data/test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG.meta +1 -0
  85. data/test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg +0 -0
  86. data/test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg.meta +1 -0
  87. data/test/dummy/tmp/cache/assets/C54/230/sprockets%2F63597bd80af49501176a9c782c200818 +0 -0
  88. data/test/dummy/tmp/cache/assets/C8A/C90/sprockets%2Fb0034d98e259fe21084231df778476e5 +0 -0
  89. data/test/dummy/tmp/cache/assets/CBB/220/sprockets%2Fe50398a56291b292932098dbaf6f60e7 +0 -0
  90. data/test/dummy/tmp/cache/assets/CED/3A0/sprockets%2F5598ef34994d21041804d8edaae45e75 +0 -0
  91. data/test/dummy/tmp/cache/assets/D0F/940/sprockets%2Fe5a0c84816880ab73280e1d7c6c6b53f +0 -0
  92. data/test/dummy/tmp/cache/assets/D25/A40/sprockets%2F3597585a09358e74b9addba0fc954d87 +0 -0
  93. data/test/dummy/tmp/cache/assets/D28/040/sprockets%2F54bad3bcb77f949259960f3f80837af9 +0 -0
  94. data/test/dummy/tmp/cache/assets/D8B/C20/sprockets%2F5b4cb2011e99baa41b98122dabfe94d0 +0 -0
  95. data/test/dummy/tmp/cache/assets/DA9/040/sprockets%2F840de459a6d1c9d87c8dcaf24f128b6c +0 -0
  96. data/test/dummy/tmp/cache/assets/DD1/040/sprockets%2Fd417bfb346f42b08fa70df9d17c9a4ee +0 -0
  97. data/test/dummy/tmp/cache/assets/DF8/F80/sprockets%2Fdda7c25be0e8e262ebc270da9775abd4 +0 -0
  98. data/test/dummy/tmp/cache/assets/E32/DF0/sprockets%2Fbd8fed5e48cbc136c85e9c4ab6d1e3b4 +0 -0
  99. data/test/dummy/tmp/dragonfly/cache/body/11/4316e3371abd942602830d5ce3e55d4ba94ec5 +0 -0
  100. data/test/dummy/tmp/dragonfly/cache/body/3e/f63b348d8ad48be7f3d8869f255af8d5d8b19f +8982 -0
  101. data/test/dummy/tmp/dragonfly/cache/body/61/e9711fd55eccdf62882cb8d127b22664f7023f +3 -0
  102. data/test/dummy/tmp/dragonfly/cache/body/a1/d3d5a6ed952ccf4816b4a96d4767ce9bae8164 +5 -0
  103. data/test/dummy/tmp/dragonfly/cache/body/c2/d1fe276d6e527c155855e99dc19d239b6d71f3 +7 -0
  104. data/test/dummy/tmp/dragonfly/cache/body/cb/052a86fcf83c49b8a1c5ca5f29b11ba31d4038 +17 -0
  105. data/test/dummy/tmp/dragonfly/cache/body/d4/ff9b03ee9e54acce72e6b793693031079eb150 +332 -0
  106. data/test/dummy/tmp/dragonfly/cache/meta/24/d0aebc1b6d4ac3b10caa6cfabf89b0ad8551c5 +0 -0
  107. data/test/dummy/tmp/dragonfly/cache/meta/37/fb962d39887389e020d58ef1f745ef1a6107cc +0 -0
  108. data/test/dummy/tmp/dragonfly/cache/meta/78/da9e9f151eb605b427b43e2098640de3fd4a6d +0 -0
  109. data/test/dummy/tmp/dragonfly/cache/meta/8a/00f63a175cfe09352e9103621040457aafc9e8 +0 -0
  110. data/test/dummy/tmp/dragonfly/cache/meta/a0/d65624dcf4c7e6827639f25060a3bf4bd6020d +0 -0
  111. data/test/dummy/tmp/dragonfly/cache/meta/ee/fe74949a8c2a0bbc077385a12944d9f98a12e0 +0 -0
  112. data/test/dummy/tmp/dragonfly/cache/meta/f9/67ac04386c59253bd80f4034d18af166cc5691 +0 -0
  113. data/test/fixtures/saphira/file_items.yml +25 -0
  114. data/test/functional/saphira/file_items_controller_test.rb +51 -0
  115. data/test/integration/navigation_test.rb +10 -0
  116. data/test/saphira_test.rb +7 -0
  117. data/test/test_helper.rb +10 -0
  118. data/test/unit/helpers/saphira/file_items_helper_test.rb +6 -0
  119. data/test/unit/saphira/file_item_test.rb +9 -0
  120. metadata +276 -0
metadata ADDED
@@ -0,0 +1,276 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: saphira
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Paul Spieker
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-09-04 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rails
17
+ prerelease: false
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 3.1.0
24
+ type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: sqlite3
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :development
36
+ version_requirements: *id002
37
+ description: This is a simple file manager created in RoR as a mountable engine. It's created for Railsyard CMS but will also work without it. To use it in RY use ry-filemanager gem.
38
+ email:
39
+ - p.spieker@duenos.de
40
+ executables: []
41
+
42
+ extensions: []
43
+
44
+ extra_rdoc_files: []
45
+
46
+ files:
47
+ - app/assets/images/saphira/icons/32x32/direction_up.png
48
+ - app/assets/images/saphira/icons/32x32/file.png
49
+ - app/assets/images/saphira/icons/32x32/folder.png
50
+ - app/assets/javascripts/saphira/application.js
51
+ - app/assets/javascripts/saphira/file_items.js
52
+ - app/assets/stylesheets/saphira/application.css
53
+ - app/assets/stylesheets/saphira/file_items.css
54
+ - app/assets/stylesheets/scaffold.css
55
+ - app/controllers/saphira/application_controller.rb
56
+ - app/controllers/saphira/file_items_controller.rb
57
+ - app/helpers/saphira/application_helper.rb
58
+ - app/helpers/saphira/file_items_helper.rb
59
+ - app/models/saphira/file_item.rb
60
+ - app/views/layouts/saphira/application.html.erb
61
+ - app/views/saphira/file_items/_form.html.erb
62
+ - app/views/saphira/file_items/edit_file.html.erb
63
+ - app/views/saphira/file_items/edit_folder.html.erb
64
+ - app/views/saphira/file_items/index.html.erb
65
+ - app/views/saphira/file_items/new_file.html.erb
66
+ - app/views/saphira/file_items/new_folder.html.erb
67
+ - app/views/saphira/file_items/show.html.erb
68
+ - config/initializers/acts_as_taggable_on.rb
69
+ - config/initializers/awesome_nested_set.rb
70
+ - config/initializers/dragonfly.rb
71
+ - config/initializers/exifr.rb
72
+ - config/initializers/friendly_id.rb
73
+ - config/routes.rb
74
+ - db/migrate/20110904170134_create_saphira_file_items.rb
75
+ - db/migrate/20110904170241_acts_as_taggable_on_migration.rb
76
+ - lib/saphira/engine.rb
77
+ - lib/saphira/version.rb
78
+ - lib/saphira.rb
79
+ - lib/tasks/saphira_tasks.rake
80
+ - MIT-LICENSE
81
+ - Rakefile
82
+ - README.md
83
+ - test/dummy/app/assets/javascripts/application.js
84
+ - test/dummy/app/assets/stylesheets/application.css
85
+ - test/dummy/app/assets/stylesheets/scaffold.css
86
+ - test/dummy/app/controllers/application_controller.rb
87
+ - test/dummy/app/helpers/application_helper.rb
88
+ - test/dummy/app/views/layouts/application.html.erb
89
+ - test/dummy/config/application.rb
90
+ - test/dummy/config/boot.rb
91
+ - test/dummy/config/cucumber.yml
92
+ - test/dummy/config/database.yml
93
+ - test/dummy/config/environment.rb
94
+ - test/dummy/config/environments/development.rb
95
+ - test/dummy/config/environments/production.rb
96
+ - test/dummy/config/environments/test.rb
97
+ - test/dummy/config/initializers/backtrace_silencers.rb
98
+ - test/dummy/config/initializers/inflections.rb
99
+ - test/dummy/config/initializers/mime_types.rb
100
+ - test/dummy/config/initializers/secret_token.rb
101
+ - test/dummy/config/initializers/session_store.rb
102
+ - test/dummy/config/initializers/wrap_parameters.rb
103
+ - test/dummy/config/locales/en.yml
104
+ - test/dummy/config/routes.rb
105
+ - test/dummy/config.ru
106
+ - test/dummy/db/development.sqlite3
107
+ - test/dummy/db/migrate/20110904172951_create_saphira_file_items.rb
108
+ - test/dummy/db/migrate/20110904172952_acts_as_taggable_on_migration.rb
109
+ - test/dummy/db/schema.rb
110
+ - test/dummy/db/test.sqlite3
111
+ - test/dummy/features/manage_file_items.feature
112
+ - test/dummy/features/step_definitions/file_item_steps.rb
113
+ - test/dummy/features/step_definitions/web_steps.rb
114
+ - test/dummy/features/support/env.rb
115
+ - test/dummy/features/support/files/eos-550d-wrong-orientation.jpg
116
+ - test/dummy/features/support/paths.rb
117
+ - test/dummy/features/support/selectors.rb
118
+ - test/dummy/Guardfile
119
+ - test/dummy/lib/tasks/cucumber.rake
120
+ - test/dummy/log/development.log
121
+ - test/dummy/log/test.log
122
+ - test/dummy/public/404.html
123
+ - test/dummy/public/422.html
124
+ - test/dummy/public/500.html
125
+ - test/dummy/public/favicon.ico
126
+ - test/dummy/Rakefile
127
+ - test/dummy/script/cucumber
128
+ - test/dummy/script/rails
129
+ - test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG
130
+ - test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG.meta
131
+ - test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg
132
+ - test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg.meta
133
+ - test/dummy/tmp/cache/assets/C54/230/sprockets%2F63597bd80af49501176a9c782c200818
134
+ - test/dummy/tmp/cache/assets/C8A/C90/sprockets%2Fb0034d98e259fe21084231df778476e5
135
+ - test/dummy/tmp/cache/assets/CBB/220/sprockets%2Fe50398a56291b292932098dbaf6f60e7
136
+ - test/dummy/tmp/cache/assets/CED/3A0/sprockets%2F5598ef34994d21041804d8edaae45e75
137
+ - test/dummy/tmp/cache/assets/D0F/940/sprockets%2Fe5a0c84816880ab73280e1d7c6c6b53f
138
+ - test/dummy/tmp/cache/assets/D25/A40/sprockets%2F3597585a09358e74b9addba0fc954d87
139
+ - test/dummy/tmp/cache/assets/D28/040/sprockets%2F54bad3bcb77f949259960f3f80837af9
140
+ - test/dummy/tmp/cache/assets/D8B/C20/sprockets%2F5b4cb2011e99baa41b98122dabfe94d0
141
+ - test/dummy/tmp/cache/assets/DA9/040/sprockets%2F840de459a6d1c9d87c8dcaf24f128b6c
142
+ - test/dummy/tmp/cache/assets/DD1/040/sprockets%2Fd417bfb346f42b08fa70df9d17c9a4ee
143
+ - test/dummy/tmp/cache/assets/DF8/F80/sprockets%2Fdda7c25be0e8e262ebc270da9775abd4
144
+ - test/dummy/tmp/cache/assets/E32/DF0/sprockets%2Fbd8fed5e48cbc136c85e9c4ab6d1e3b4
145
+ - test/dummy/tmp/dragonfly/cache/body/11/4316e3371abd942602830d5ce3e55d4ba94ec5
146
+ - test/dummy/tmp/dragonfly/cache/body/3e/f63b348d8ad48be7f3d8869f255af8d5d8b19f
147
+ - test/dummy/tmp/dragonfly/cache/body/61/e9711fd55eccdf62882cb8d127b22664f7023f
148
+ - test/dummy/tmp/dragonfly/cache/body/a1/d3d5a6ed952ccf4816b4a96d4767ce9bae8164
149
+ - test/dummy/tmp/dragonfly/cache/body/c2/d1fe276d6e527c155855e99dc19d239b6d71f3
150
+ - test/dummy/tmp/dragonfly/cache/body/cb/052a86fcf83c49b8a1c5ca5f29b11ba31d4038
151
+ - test/dummy/tmp/dragonfly/cache/body/d4/ff9b03ee9e54acce72e6b793693031079eb150
152
+ - test/dummy/tmp/dragonfly/cache/meta/24/d0aebc1b6d4ac3b10caa6cfabf89b0ad8551c5
153
+ - test/dummy/tmp/dragonfly/cache/meta/37/fb962d39887389e020d58ef1f745ef1a6107cc
154
+ - test/dummy/tmp/dragonfly/cache/meta/78/da9e9f151eb605b427b43e2098640de3fd4a6d
155
+ - test/dummy/tmp/dragonfly/cache/meta/8a/00f63a175cfe09352e9103621040457aafc9e8
156
+ - test/dummy/tmp/dragonfly/cache/meta/a0/d65624dcf4c7e6827639f25060a3bf4bd6020d
157
+ - test/dummy/tmp/dragonfly/cache/meta/ee/fe74949a8c2a0bbc077385a12944d9f98a12e0
158
+ - test/dummy/tmp/dragonfly/cache/meta/f9/67ac04386c59253bd80f4034d18af166cc5691
159
+ - test/fixtures/saphira/file_items.yml
160
+ - test/functional/saphira/file_items_controller_test.rb
161
+ - test/integration/navigation_test.rb
162
+ - test/saphira_test.rb
163
+ - test/test_helper.rb
164
+ - test/unit/helpers/saphira/file_items_helper_test.rb
165
+ - test/unit/saphira/file_item_test.rb
166
+ homepage: ""
167
+ licenses: []
168
+
169
+ post_install_message:
170
+ rdoc_options: []
171
+
172
+ require_paths:
173
+ - lib
174
+ required_ruby_version: !ruby/object:Gem::Requirement
175
+ none: false
176
+ requirements:
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: "0"
180
+ required_rubygems_version: !ruby/object:Gem::Requirement
181
+ none: false
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: "0"
186
+ requirements: []
187
+
188
+ rubyforge_project:
189
+ rubygems_version: 1.8.8
190
+ signing_key:
191
+ specification_version: 3
192
+ summary: A simple file manager created for RoR using mountable engines.
193
+ test_files:
194
+ - test/dummy/app/assets/javascripts/application.js
195
+ - test/dummy/app/assets/stylesheets/application.css
196
+ - test/dummy/app/assets/stylesheets/scaffold.css
197
+ - test/dummy/app/controllers/application_controller.rb
198
+ - test/dummy/app/helpers/application_helper.rb
199
+ - test/dummy/app/views/layouts/application.html.erb
200
+ - test/dummy/config/application.rb
201
+ - test/dummy/config/boot.rb
202
+ - test/dummy/config/cucumber.yml
203
+ - test/dummy/config/database.yml
204
+ - test/dummy/config/environment.rb
205
+ - test/dummy/config/environments/development.rb
206
+ - test/dummy/config/environments/production.rb
207
+ - test/dummy/config/environments/test.rb
208
+ - test/dummy/config/initializers/backtrace_silencers.rb
209
+ - test/dummy/config/initializers/inflections.rb
210
+ - test/dummy/config/initializers/mime_types.rb
211
+ - test/dummy/config/initializers/secret_token.rb
212
+ - test/dummy/config/initializers/session_store.rb
213
+ - test/dummy/config/initializers/wrap_parameters.rb
214
+ - test/dummy/config/locales/en.yml
215
+ - test/dummy/config/routes.rb
216
+ - test/dummy/config.ru
217
+ - test/dummy/db/development.sqlite3
218
+ - test/dummy/db/migrate/20110904172951_create_saphira_file_items.rb
219
+ - test/dummy/db/migrate/20110904172952_acts_as_taggable_on_migration.rb
220
+ - test/dummy/db/schema.rb
221
+ - test/dummy/db/test.sqlite3
222
+ - test/dummy/features/manage_file_items.feature
223
+ - test/dummy/features/step_definitions/file_item_steps.rb
224
+ - test/dummy/features/step_definitions/web_steps.rb
225
+ - test/dummy/features/support/env.rb
226
+ - test/dummy/features/support/files/eos-550d-wrong-orientation.jpg
227
+ - test/dummy/features/support/paths.rb
228
+ - test/dummy/features/support/selectors.rb
229
+ - test/dummy/Guardfile
230
+ - test/dummy/lib/tasks/cucumber.rake
231
+ - test/dummy/log/development.log
232
+ - test/dummy/log/test.log
233
+ - test/dummy/public/404.html
234
+ - test/dummy/public/422.html
235
+ - test/dummy/public/500.html
236
+ - test/dummy/public/favicon.ico
237
+ - test/dummy/Rakefile
238
+ - test/dummy/script/cucumber
239
+ - test/dummy/script/rails
240
+ - test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG
241
+ - test/dummy/system/files/development/2011/09/04/20_16_51_527_IMG_0074.JPG.meta
242
+ - test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg
243
+ - test/dummy/system/files/test/2011/09/04/20_14_52_22_eos_550d_wrong_orientation.jpg.meta
244
+ - test/dummy/tmp/cache/assets/C54/230/sprockets%2F63597bd80af49501176a9c782c200818
245
+ - test/dummy/tmp/cache/assets/C8A/C90/sprockets%2Fb0034d98e259fe21084231df778476e5
246
+ - test/dummy/tmp/cache/assets/CBB/220/sprockets%2Fe50398a56291b292932098dbaf6f60e7
247
+ - test/dummy/tmp/cache/assets/CED/3A0/sprockets%2F5598ef34994d21041804d8edaae45e75
248
+ - test/dummy/tmp/cache/assets/D0F/940/sprockets%2Fe5a0c84816880ab73280e1d7c6c6b53f
249
+ - test/dummy/tmp/cache/assets/D25/A40/sprockets%2F3597585a09358e74b9addba0fc954d87
250
+ - test/dummy/tmp/cache/assets/D28/040/sprockets%2F54bad3bcb77f949259960f3f80837af9
251
+ - test/dummy/tmp/cache/assets/D8B/C20/sprockets%2F5b4cb2011e99baa41b98122dabfe94d0
252
+ - test/dummy/tmp/cache/assets/DA9/040/sprockets%2F840de459a6d1c9d87c8dcaf24f128b6c
253
+ - test/dummy/tmp/cache/assets/DD1/040/sprockets%2Fd417bfb346f42b08fa70df9d17c9a4ee
254
+ - test/dummy/tmp/cache/assets/DF8/F80/sprockets%2Fdda7c25be0e8e262ebc270da9775abd4
255
+ - test/dummy/tmp/cache/assets/E32/DF0/sprockets%2Fbd8fed5e48cbc136c85e9c4ab6d1e3b4
256
+ - test/dummy/tmp/dragonfly/cache/body/11/4316e3371abd942602830d5ce3e55d4ba94ec5
257
+ - test/dummy/tmp/dragonfly/cache/body/3e/f63b348d8ad48be7f3d8869f255af8d5d8b19f
258
+ - test/dummy/tmp/dragonfly/cache/body/61/e9711fd55eccdf62882cb8d127b22664f7023f
259
+ - test/dummy/tmp/dragonfly/cache/body/a1/d3d5a6ed952ccf4816b4a96d4767ce9bae8164
260
+ - test/dummy/tmp/dragonfly/cache/body/c2/d1fe276d6e527c155855e99dc19d239b6d71f3
261
+ - test/dummy/tmp/dragonfly/cache/body/cb/052a86fcf83c49b8a1c5ca5f29b11ba31d4038
262
+ - test/dummy/tmp/dragonfly/cache/body/d4/ff9b03ee9e54acce72e6b793693031079eb150
263
+ - test/dummy/tmp/dragonfly/cache/meta/24/d0aebc1b6d4ac3b10caa6cfabf89b0ad8551c5
264
+ - test/dummy/tmp/dragonfly/cache/meta/37/fb962d39887389e020d58ef1f745ef1a6107cc
265
+ - test/dummy/tmp/dragonfly/cache/meta/78/da9e9f151eb605b427b43e2098640de3fd4a6d
266
+ - test/dummy/tmp/dragonfly/cache/meta/8a/00f63a175cfe09352e9103621040457aafc9e8
267
+ - test/dummy/tmp/dragonfly/cache/meta/a0/d65624dcf4c7e6827639f25060a3bf4bd6020d
268
+ - test/dummy/tmp/dragonfly/cache/meta/ee/fe74949a8c2a0bbc077385a12944d9f98a12e0
269
+ - test/dummy/tmp/dragonfly/cache/meta/f9/67ac04386c59253bd80f4034d18af166cc5691
270
+ - test/fixtures/saphira/file_items.yml
271
+ - test/functional/saphira/file_items_controller_test.rb
272
+ - test/integration/navigation_test.rb
273
+ - test/saphira_test.rb
274
+ - test/test_helper.rb
275
+ - test/unit/helpers/saphira/file_items_helper_test.rb
276
+ - test/unit/saphira/file_item_test.rb