hyrax 5.2.0 → 5.3.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 (527) hide show
  1. checksums.yaml +4 -4
  2. data/.dassie/.env +5 -1
  3. data/.dassie/Gemfile +4 -2
  4. data/.dassie/app/assets/images/bulkrax/removed.png +0 -0
  5. data/.dassie/app/assets/javascripts/application.js +2 -0
  6. data/.dassie/app/assets/stylesheets/application.css +1 -0
  7. data/.dassie/app/controllers/catalog_controller.rb +1 -0
  8. data/.dassie/app/forms/admin_set_resource_form.rb +6 -0
  9. data/.dassie/app/forms/collection_resource_form.rb +5 -2
  10. data/.dassie/app/forms/generic_work_resource_form.rb +5 -2
  11. data/.dassie/app/forms/monograph_form.rb +5 -3
  12. data/.dassie/app/indexers/admin_set_resource_indexer.rb +5 -0
  13. data/.dassie/app/indexers/collection_resource_indexer.rb +3 -3
  14. data/.dassie/app/indexers/generic_work_resource_indexer.rb +6 -3
  15. data/.dassie/app/indexers/monograph_indexer.rb +6 -2
  16. data/.dassie/app/models/ability.rb +8 -0
  17. data/.dassie/app/models/collection_resource.rb +4 -2
  18. data/.dassie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
  19. data/.dassie/app/models/generic_work_resource.rb +5 -2
  20. data/.dassie/app/models/monograph.rb +5 -2
  21. data/.dassie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
  22. data/.dassie/bin/importer +142 -0
  23. data/.dassie/bin/web +4 -0
  24. data/.dassie/config/browse_everything_providers.yml +1 -1
  25. data/.dassie/config/bulkrax_api.yml +86 -0
  26. data/.dassie/config/initializers/bulkrax.rb +92 -0
  27. data/.dassie/config/initializers/clamav.rb +2 -0
  28. data/.dassie/config/initializers/hyrax.rb +7 -1
  29. data/.dassie/config/initializers/riiif.rb +4 -80
  30. data/.dassie/config/initializers/wings.rb +1 -1
  31. data/.dassie/config/metadata_profiles/m3_profile.yaml +929 -0
  32. data/.dassie/config/puma.rb +4 -2
  33. data/.dassie/config/routes.rb +7 -0
  34. data/.dassie/config/sidekiq.yml +17 -0
  35. data/.dassie/config/uv/uv.html +63 -81
  36. data/.dassie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
  37. data/.dassie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
  38. data/.dassie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
  39. data/.dassie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
  40. data/.dassie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
  41. data/.dassie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
  42. data/.dassie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
  43. data/.dassie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
  44. data/.dassie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
  45. data/.dassie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
  46. data/.dassie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
  47. data/.dassie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
  48. data/.dassie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
  49. data/.dassie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
  50. data/.dassie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
  51. data/.dassie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
  52. data/.dassie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
  53. data/.dassie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
  54. data/.dassie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
  55. data/.dassie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
  56. data/.dassie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
  57. data/.dassie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
  58. data/.dassie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
  59. data/.dassie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
  60. data/.dassie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
  61. data/.dassie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
  62. data/.dassie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
  63. data/.dassie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
  64. data/.dassie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
  65. data/.dassie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
  66. data/.dassie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
  67. data/.dassie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
  68. data/.dassie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
  69. data/.dassie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
  70. data/.dassie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
  71. data/.dassie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
  72. data/.dassie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
  73. data/.dassie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
  74. data/.dassie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
  75. data/.dassie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
  76. data/.dassie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
  77. data/.dassie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
  78. data/.dassie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
  79. data/.dassie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
  80. data/.dassie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
  81. data/.dassie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
  82. data/.dassie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
  83. data/.dassie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
  84. data/.dassie/db/schema.rb +154 -1
  85. data/.dassie/package.json +1 -1
  86. data/.dassie/rspec_split_configuration.json +835 -0
  87. data/.dassie/solr/conf/solrconfig.xml +21 -5
  88. data/.github/{ISSUE_TEMPLATE.md → ISSUE_TEMPLATE/issue_template.md} +5 -0
  89. data/.github/workflows/lint-build-test.yml +5 -1
  90. data/.github/workflows/release-charts.yml +48 -0
  91. data/.gitignore +6 -0
  92. data/.koppie/.env +5 -1
  93. data/.koppie/Gemfile +3 -1
  94. data/.koppie/app/assets/images/bulkrax/removed.png +0 -0
  95. data/.koppie/app/assets/javascripts/application.js +2 -0
  96. data/.koppie/app/assets/stylesheets/application.css +1 -0
  97. data/.koppie/app/controllers/catalog_controller.rb +1 -1
  98. data/.koppie/app/forms/collection_resource_form.rb +5 -2
  99. data/.koppie/app/forms/file_set_form.rb +5 -0
  100. data/.koppie/app/forms/generic_work_form.rb +5 -3
  101. data/.koppie/app/forms/monograph_form.rb +5 -3
  102. data/.koppie/app/indexers/collection_resource_indexer.rb +5 -2
  103. data/.koppie/app/indexers/file_set_indexer.rb +7 -0
  104. data/.koppie/app/indexers/generic_work_indexer.rb +6 -3
  105. data/.koppie/app/indexers/monograph_indexer.rb +6 -2
  106. data/.koppie/app/models/ability.rb +8 -0
  107. data/.koppie/app/models/collection_resource.rb +4 -2
  108. data/.koppie/app/models/concerns/bulkrax/has_local_processing.rb +8 -0
  109. data/.koppie/app/models/generic_work.rb +5 -2
  110. data/.koppie/app/models/monograph.rb +5 -2
  111. data/.koppie/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
  112. data/.koppie/bin/importer +142 -0
  113. data/.koppie/bin/web +4 -0
  114. data/.koppie/config/browse_everything_providers.yml +2 -0
  115. data/.koppie/config/bulkrax_api.yml +86 -0
  116. data/.koppie/config/initializers/bulkrax.rb +92 -0
  117. data/.koppie/config/initializers/clamav.rb +2 -0
  118. data/.koppie/config/initializers/hyrax.rb +11 -3
  119. data/.koppie/config/initializers/riiif.rb +4 -82
  120. data/.koppie/config/metadata_profiles/m3_profile.yaml +930 -0
  121. data/.koppie/config/routes.rb +7 -0
  122. data/.koppie/config/sidekiq.yml +2 -0
  123. data/.koppie/config/uv/uv.html +63 -81
  124. data/.koppie/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb +9 -0
  125. data/.koppie/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb +5 -0
  126. data/.koppie/db/migrate/20250826142438_create_bulkrax_importers.bulkrax.rb +19 -0
  127. data/.koppie/db/migrate/20250826142439_create_bulkrax_importer_runs.bulkrax.rb +17 -0
  128. data/.koppie/db/migrate/20250826142440_create_bulkrax_entries.bulkrax.rb +17 -0
  129. data/.koppie/db/migrate/20250826142441_add_status_to_entry.bulkrax.rb +10 -0
  130. data/.koppie/db/migrate/20250826142442_add_collections_to_importer_runs.bulkrax.rb +7 -0
  131. data/.koppie/db/migrate/20250826142443_change_collection_ids_on_entries.bulkrax.rb +6 -0
  132. data/.koppie/db/migrate/20250826142444_create_bulkrax_exporters.bulkrax.rb +20 -0
  133. data/.koppie/db/migrate/20250826142445_create_bulkrax_exporter_runs.bulkrax.rb +15 -0
  134. data/.koppie/db/migrate/20250826142446_change_importer_and_exporter_to_polymorphic.bulkrax.rb +19 -0
  135. data/.koppie/db/migrate/20250826142447_add_total_collection_records_to_importer_runs.bulkrax.rb +6 -0
  136. data/.koppie/db/migrate/20250826142448_add_children_to_importer_runs.bulkrax.rb +7 -0
  137. data/.koppie/db/migrate/20250826142449_change_total_records_to_total_work_entries.bulkrax.rb +7 -0
  138. data/.koppie/db/migrate/20250826142450_change_entry_last_error.bulkrax.rb +20 -0
  139. data/.koppie/db/migrate/20250826142451_add_validate_only_to_bulkrax_importers.bulkrax.rb +6 -0
  140. data/.koppie/db/migrate/20250826142452_add_status_to_importers.bulkrax.rb +10 -0
  141. data/.koppie/db/migrate/20250826142453_remove_foreign_key_from_bulkrax_entries.bulkrax.rb +6 -0
  142. data/.koppie/db/migrate/20250826142454_add_status_to_exporters.bulkrax.rb +8 -0
  143. data/.koppie/db/migrate/20250826142455_add_invalid_record_to_importer_run.bulkrax.rb +6 -0
  144. data/.koppie/db/migrate/20250826142456_create_bulkrax_statuses.bulkrax.rb +19 -0
  145. data/.koppie/db/migrate/20250826142457_move_to_statuses.bulkrax.rb +31 -0
  146. data/.koppie/db/migrate/20250826142458_add_date_filter_and_status_to_bulkrax_exporters.bulkrax.rb +8 -0
  147. data/.koppie/db/migrate/20250826142459_add_workflow_status_to_bulkrax_exporter.bulkrax.rb +6 -0
  148. data/.koppie/db/migrate/20250826142460_remove_unused_last_error.bulkrax.rb +8 -0
  149. data/.koppie/db/migrate/20250826142461_increase_text_sizes.bulkrax.rb +13 -0
  150. data/.koppie/db/migrate/20250826142462_change_bulkrax_statuses_error_message_column_type_to_text.bulkrax.rb +6 -0
  151. data/.koppie/db/migrate/20250826142463_rename_children_counters_to_relationships.bulkrax.rb +7 -0
  152. data/.koppie/db/migrate/20250826142464_add_file_set_counters_to_importer_runs.bulkrax.rb +8 -0
  153. data/.koppie/db/migrate/20250826142465_add_import_attempts_to_entries.bulkrax.rb +6 -0
  154. data/.koppie/db/migrate/20250826142466_add_work_counters_to_importer_runs.bulkrax.rb +7 -0
  155. data/.koppie/db/migrate/20250826142467_create_bulkrax_pending_relationships.bulkrax.rb +14 -0
  156. data/.koppie/db/migrate/20250826142468_add_order_to_bulkrax_pending_relationships.bulkrax.rb +6 -0
  157. data/.koppie/db/migrate/20250826142469_add_include_thumbnails_to_bulkrax_exporters.bulkrax.rb +6 -0
  158. data/.koppie/db/migrate/20250826142470_add_generated_metadata_to_bulkrax_exporters.bulkrax.rb +6 -0
  159. data/.koppie/db/migrate/20250826142471_rename_bulkrax_importer_run_to_importer_run.bulkrax.rb +18 -0
  160. data/.koppie/db/migrate/20250826142472_add_indices_to_bulkrax.bulkrax.rb +26 -0
  161. data/.koppie/db/migrate/20250826142473_denormalize_status_message.bulkrax.rb +8 -0
  162. data/.koppie/db/migrate/20250826142474_update_identifier_index.bulkrax.rb +7 -0
  163. data/.koppie/db/migrate/20250826142475_add_index_to_metadata_bulkrax_identifier.bulkrax.rb +19 -0
  164. data/.koppie/db/migrate/20250826142476_add_file_name_to_uploaded_files.bulkrax.rb +6 -0
  165. data/.koppie/db/migrate/20250826142477_add_error_tracking_to_pending_relationships.bulkrax.rb +6 -0
  166. data/.koppie/db/migrate/20250826142478_add_last_imported_at_to_bulkrax_importers.bulkrax.rb +6 -0
  167. data/.koppie/db/migrate/20250826142479_add_next_import_at_to_bulkrax_importers.bulkrax.rb +6 -0
  168. data/.koppie/db/migrate/20250826142480_entry_error_denormalization.bulkrax.rb +8 -0
  169. data/.koppie/db/migrate/20250826142481_faster_first_entry.bulkrax.rb +8 -0
  170. data/.koppie/db/migrate/20260430000001_create_hyrax_redirect_paths.hyrax.rb +13 -0
  171. data/.koppie/db/migrate/20260521003627_add_additional_redirect_info.hyrax.rb +32 -0
  172. data/.koppie/db/schema.rb +154 -1
  173. data/.koppie/package.json +1 -1
  174. data/.koppie/rspec_split_configuration.json +835 -0
  175. data/.koppie/solr/conf/solrconfig.xml +0 -5
  176. data/.koppie/yarn.lock +5587 -752
  177. data/.rubocop.yml +1 -0
  178. data/CONTAINERS.md +2 -0
  179. data/Dockerfile +9 -22
  180. data/Gemfile +0 -1
  181. data/Gemfile.allinson +2 -0
  182. data/README.md +1 -2
  183. data/app/actors/hyrax/actors/file_actor.rb +2 -0
  184. data/app/actors/hyrax/actors/file_set_actor.rb +1 -1
  185. data/app/assets/javascripts/hyrax/app.js.erb +143 -10
  186. data/app/assets/javascripts/hyrax/collection_select.js +68 -0
  187. data/app/assets/javascripts/hyrax/copy_permalink_button.js +28 -0
  188. data/app/assets/javascripts/hyrax/redirects.js +45 -0
  189. data/app/assets/javascripts/hyrax/relationships/control.es6 +21 -1
  190. data/app/assets/javascripts/hyrax/select_work_type.es6 +7 -2
  191. data/app/assets/javascripts/hyrax.js +3 -1
  192. data/app/assets/stylesheets/hyrax/_file-show.scss +1 -0
  193. data/app/assets/stylesheets/hyrax/_viewer.scss +8 -0
  194. data/app/assets/stylesheets/hyrax/dashboard.scss +22 -1
  195. data/app/assets/stylesheets/hyrax/sidebar.scss +98 -3
  196. data/app/authorities/qa/authorities/collections.rb +9 -9
  197. data/app/controllers/concerns/hyrax/analytics_error_handling.rb +97 -0
  198. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +3 -1
  199. data/app/controllers/concerns/hyrax/ensure_migrated_behavior.rb +50 -0
  200. data/app/controllers/concerns/hyrax/flexible_catalog_behavior.rb +206 -0
  201. data/app/controllers/concerns/hyrax/flexible_schema_behavior.rb +17 -0
  202. data/app/controllers/concerns/hyrax/redirect_to_display_url.rb +54 -0
  203. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +52 -10
  204. data/app/controllers/hyrax/admin/admin_sets_controller.rb +21 -13
  205. data/app/controllers/hyrax/admin/analytics/collection_reports_controller.rb +2 -0
  206. data/app/controllers/hyrax/admin/analytics/work_reports_controller.rb +1 -0
  207. data/app/controllers/hyrax/admin/metadata_profiles_controller.rb +66 -0
  208. data/app/controllers/hyrax/batch_uploads_controller.rb +2 -0
  209. data/app/controllers/hyrax/dashboard/collections_controller.rb +27 -6
  210. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +2 -1
  211. data/app/controllers/hyrax/dashboard_controller.rb +2 -1
  212. data/app/controllers/hyrax/file_sets_controller.rb +19 -1
  213. data/app/controllers/hyrax/homepage_controller.rb +7 -0
  214. data/app/controllers/hyrax/my/works_controller.rb +2 -21
  215. data/app/controllers/hyrax/permissions_controller.rb +4 -2
  216. data/app/controllers/hyrax/redirects_controller.rb +56 -0
  217. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +2 -1
  218. data/app/controllers/hyrax/transcripts_controller.rb +31 -0
  219. data/app/controllers/hyrax/uploads_controller.rb +18 -9
  220. data/app/forms/concerns/hyrax/based_near_field_behavior.rb +77 -0
  221. data/app/forms/concerns/hyrax/flexible_form_behavior.rb +37 -0
  222. data/app/forms/concerns/hyrax/redirects_field_behavior.rb +95 -0
  223. data/app/forms/concerns/hyrax/transcripts_behavior.rb +40 -0
  224. data/app/forms/hyrax/forms/admin_set_form.rb +1 -1
  225. data/app/forms/hyrax/forms/administrative_set_form.rb +3 -0
  226. data/app/forms/hyrax/forms/batch_edit_form.rb +1 -3
  227. data/app/forms/hyrax/forms/batch_upload_form.rb +14 -0
  228. data/app/forms/hyrax/forms/file_set_edit_form.rb +1 -1
  229. data/app/forms/hyrax/forms/file_set_form.rb +6 -7
  230. data/app/forms/hyrax/forms/pcdm_collection_form.rb +17 -5
  231. data/app/forms/hyrax/forms/pcdm_object_form.rb +11 -3
  232. data/app/forms/hyrax/forms/resource_batch_edit_form.rb +8 -22
  233. data/app/forms/hyrax/forms/resource_form.rb +110 -10
  234. data/app/forms/hyrax/forms.rb +1 -0
  235. data/app/helpers/hyrax/attributes_helper.rb +109 -0
  236. data/app/helpers/hyrax/blacklight_override.rb +26 -0
  237. data/app/helpers/hyrax/collections_helper.rb +2 -0
  238. data/app/helpers/hyrax/file_set_form_helper.rb +24 -0
  239. data/app/helpers/hyrax/hyrax_helper_behavior.rb +51 -2
  240. data/app/helpers/hyrax/iiif_helper.rb +11 -1
  241. data/app/helpers/hyrax/permalink_helper.rb +37 -0
  242. data/app/helpers/hyrax/redirects_tab_helper.rb +29 -0
  243. data/app/helpers/hyrax/work_form_helper.rb +9 -5
  244. data/app/helpers/hyrax/works_helper.rb +14 -0
  245. data/app/indexers/concerns/hyrax/workflow_indexer.rb +30 -0
  246. data/app/indexers/hyrax/file_set_indexer.rb +1 -0
  247. data/app/indexers/hyrax/indexers/administrative_set_indexer.rb +2 -1
  248. data/app/indexers/hyrax/indexers/file_set_indexer.rb +6 -2
  249. data/app/indexers/hyrax/indexers/pcdm_collection_indexer.rb +11 -1
  250. data/app/indexers/hyrax/indexers/pcdm_object_indexer.rb +25 -4
  251. data/app/indexers/hyrax/indexers/redirects_indexer.rb +29 -0
  252. data/app/indexers/hyrax/indexers/resource_indexer.rb +4 -0
  253. data/app/indexers/hyrax/indexers.rb +2 -0
  254. data/app/inputs/controlled_vocabulary_input.rb +7 -1
  255. data/app/jobs/content_deposit_error_event_job.rb +14 -0
  256. data/app/jobs/create_work_job.rb +2 -0
  257. data/app/jobs/migrate_files_to_valkyrie_job.rb +7 -1
  258. data/app/models/batch_upload_item.rb +4 -0
  259. data/app/models/concerns/hyrax/ability/flexible_metadata_ability.rb +10 -0
  260. data/app/models/concerns/hyrax/ability.rb +3 -1
  261. data/app/models/concerns/hyrax/collection_behavior.rb +4 -0
  262. data/app/models/concerns/hyrax/file_set/transcripts.rb +16 -0
  263. data/app/models/concerns/hyrax/file_set_behavior.rb +9 -0
  264. data/app/models/concerns/hyrax/flexibility.rb +107 -0
  265. data/app/models/concerns/hyrax/redirects_normalization.rb +38 -0
  266. data/app/models/concerns/hyrax/solr_document/characterization.rb +1 -1
  267. data/app/models/concerns/hyrax/solr_document/metadata.rb +9 -0
  268. data/app/models/concerns/hyrax/solr_document/ordered_members.rb +4 -0
  269. data/app/models/concerns/hyrax/solr_document_behavior.rb +28 -6
  270. data/app/models/concerns/hyrax/suppressible.rb +1 -1
  271. data/app/models/concerns/hyrax/valkyrie_lazy_migration.rb +1 -1
  272. data/app/models/concerns/hyrax/with_embargoes_and_leases.rb +30 -0
  273. data/app/models/concerns/hyrax/work_behavior.rb +8 -0
  274. data/app/models/hyrax/administrative_set.rb +1 -1
  275. data/app/models/hyrax/change_set.rb +3 -1
  276. data/app/models/hyrax/embargo.rb +3 -1
  277. data/app/models/hyrax/file_set.rb +4 -2
  278. data/app/models/hyrax/flexible_schema.rb +219 -0
  279. data/app/models/hyrax/lease.rb +3 -1
  280. data/app/models/hyrax/pcdm_collection.rb +4 -1
  281. data/app/models/hyrax/redirect.rb +64 -0
  282. data/app/models/hyrax/redirect_path.rb +14 -0
  283. data/app/models/hyrax/resource.rb +22 -25
  284. data/app/models/hyrax/riiif/file.rb +43 -0
  285. data/app/models/hyrax/riiif/file_resolver.rb +65 -0
  286. data/app/models/hyrax/uploaded_file.rb +9 -0
  287. data/app/models/hyrax/virus_scanner.rb +16 -3
  288. data/app/models/hyrax/work.rb +4 -1
  289. data/app/models/job_io_wrapper.rb +12 -3
  290. data/app/models/user_mailbox.rb +3 -1
  291. data/app/presenters/hyrax/admin_set_presenter.rb +11 -0
  292. data/app/presenters/hyrax/annotates_content.rb +35 -0
  293. data/app/presenters/hyrax/collection_presenter.rb +5 -1
  294. data/app/presenters/hyrax/displays_content.rb +133 -0
  295. data/app/presenters/hyrax/displays_image.rb +11 -4
  296. data/app/presenters/hyrax/displays_transcripts.rb +59 -0
  297. data/app/presenters/hyrax/file_set_presenter.rb +8 -18
  298. data/app/presenters/hyrax/google_scholar_presenter.rb +39 -0
  299. data/app/presenters/hyrax/iiif_manifest_presenter.rb +22 -4
  300. data/app/presenters/hyrax/missing_method_behavior.rb +15 -0
  301. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -4
  302. data/app/presenters/hyrax/work_show_presenter.rb +56 -14
  303. data/app/renderers/hyrax/renderers/attribute_renderer.rb +6 -2
  304. data/app/renderers/hyrax/renderers/license_attribute_renderer.rb +10 -10
  305. data/app/renderers/hyrax/renderers/redirects_label_attribute_renderer.rb +25 -0
  306. data/app/renderers/hyrax/renderers/rights_statement_attribute_renderer.rb +10 -11
  307. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +1 -5
  308. data/app/search_builders/hyrax/filter_by_type.rb +1 -1
  309. data/app/services/hyrax/action/create_valkyrie_work.rb +3 -2
  310. data/app/services/hyrax/authority_rendering_helper.rb +28 -0
  311. data/app/services/hyrax/authority_service.rb +107 -0
  312. data/app/services/hyrax/callbacks.rb +2 -2
  313. data/app/services/hyrax/collections/nested_collection_query_service.rb +9 -3
  314. data/app/services/hyrax/collections_service.rb +17 -0
  315. data/app/services/hyrax/custom_queries/find_by_property_value.rb +89 -0
  316. data/app/services/hyrax/edit_permissions_service.rb +4 -4
  317. data/app/services/hyrax/file_set_type_service.rb +12 -4
  318. data/app/services/hyrax/flexible_schema_validator_service.rb +153 -0
  319. data/app/services/hyrax/flexible_schema_validators/class_validator.rb +123 -0
  320. data/app/services/hyrax/flexible_schema_validators/core_metadata_validator.rb +211 -0
  321. data/app/services/hyrax/flexible_schema_validators/existing_records_validator.rb +83 -0
  322. data/app/services/hyrax/flexible_schema_validators/redirects_validator.rb +116 -0
  323. data/app/services/hyrax/flexible_schema_validators/schema_validator.rb +34 -0
  324. data/app/services/hyrax/flexible_schema_validators/sort_properties_validator.rb +54 -0
  325. data/app/services/hyrax/license_service.rb +1 -1
  326. data/app/services/hyrax/listeners/metadata_index_listener.rb +11 -0
  327. data/app/services/hyrax/m3_profile_editor.rb +32 -0
  328. data/app/services/hyrax/m3_schema_loader.rb +119 -0
  329. data/app/services/hyrax/manifest_builder_service.rb +18 -24
  330. data/app/services/hyrax/permalink_path.rb +25 -0
  331. data/app/services/hyrax/qa_select_service.rb +9 -5
  332. data/app/services/hyrax/redirect_path_normalizer.rb +58 -0
  333. data/app/services/hyrax/redirects_lookup.rb +59 -0
  334. data/app/services/hyrax/resource_permissions_visibility_propagator.rb +54 -0
  335. data/app/services/hyrax/resource_types_service.rb +3 -20
  336. data/app/services/hyrax/rights_statement_service.rb +1 -1
  337. data/app/services/hyrax/schema_loader.rb +205 -0
  338. data/app/services/hyrax/search_service.rb +1 -1
  339. data/app/services/hyrax/simple_schema_loader.rb +28 -127
  340. data/app/services/hyrax/solr_service.rb +39 -2
  341. data/app/services/hyrax/tolerant_select_service.rb +5 -3
  342. data/app/services/hyrax/valkyrie_upload.rb +2 -2
  343. data/app/services/hyrax/visibility_propagator.rb +4 -1
  344. data/app/services/hyrax/work_uploads_handler.rb +17 -9
  345. data/app/services/hyrax/workflow/workflow_factory.rb +5 -4
  346. data/app/services/migrate_resource_service.rb +7 -1
  347. data/app/uploaders/hyrax/uploaded_file_uploader.rb +2 -2
  348. data/app/utils/hyrax/data_destroyers/collection_branding_destroyer.rb +1 -1
  349. data/app/utils/hyrax/required_data_seeder.rb +1 -0
  350. data/app/utils/hyrax/required_data_seeders/collection_type_seeder.rb +1 -1
  351. data/app/utils/hyrax/required_data_seeders/flexible_profile_seeder.rb +28 -0
  352. data/app/validators/hyrax/controlled_vocabulary_validator.rb +64 -0
  353. data/app/validators/hyrax/redirect_validator.rb +128 -0
  354. data/app/views/catalog/_thumbnail_list_default.html.erb +2 -2
  355. data/app/views/collections/edit_fields/_schema_version.html.erb +1 -0
  356. data/app/views/hyrax/admin/admin_sets/_form_metadata.html.erb +24 -2
  357. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +1 -1
  358. data/app/views/hyrax/admin/admin_sets/show.html.erb +1 -1
  359. data/app/views/hyrax/admin/analytics/_analytics_error.html.erb +42 -0
  360. data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +11 -9
  361. data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +60 -57
  362. data/app/views/hyrax/admin/features/index.html.erb +1 -1
  363. data/app/views/hyrax/admin/metadata_profiles/_import_modal.html.erb +20 -0
  364. data/app/views/hyrax/admin/metadata_profiles/index.html.erb +54 -0
  365. data/app/views/hyrax/base/_attribute_rows.html.erb +4 -21
  366. data/app/views/hyrax/base/_citations.html.erb +1 -0
  367. data/app/views/hyrax/base/_currently_shared.html.erb +2 -1
  368. data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
  369. data/app/views/hyrax/base/_form_member_of_collections.html.erb +6 -6
  370. data/app/views/hyrax/base/_form_redirects.html.erb +125 -0
  371. data/app/views/hyrax/base/_form_share.html.erb +7 -2
  372. data/app/views/hyrax/base/_member.html.erb +1 -1
  373. data/app/views/hyrax/base/_social_media.html.erb +1 -1
  374. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
  375. data/app/views/hyrax/base/show.html.erb +3 -0
  376. data/app/views/hyrax/collections/_default_group.html.erb +3 -0
  377. data/app/views/hyrax/collections/_list_collections.html.erb +3 -0
  378. data/app/views/hyrax/collections/_list_works.html.erb +1 -1
  379. data/app/views/hyrax/collections/_show_document_list_row.html.erb +1 -1
  380. data/app/views/hyrax/collections/show.html.erb +4 -0
  381. data/app/views/hyrax/dashboard/_sidebar.html.erb +4 -2
  382. data/app/views/hyrax/dashboard/collections/_button_for_update_collection.html.erb +2 -1
  383. data/app/views/hyrax/dashboard/collections/_default_group.html.erb +3 -0
  384. data/app/views/hyrax/dashboard/collections/_form.html.erb +17 -0
  385. data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +7 -10
  386. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -0
  387. data/app/views/hyrax/dashboard/collections/_list_works.html.erb +1 -1
  388. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +1 -1
  389. data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +1 -8
  390. data/app/views/hyrax/dashboard/profiles/_trophy_edit.html.erb +1 -1
  391. data/app/views/hyrax/dashboard/profiles/show.html.erb +5 -5
  392. data/app/views/hyrax/dashboard/sidebar/_metadata.html.erb +11 -0
  393. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +1 -0
  394. data/app/views/hyrax/dashboard/works/_default_group.html.erb +3 -0
  395. data/app/views/hyrax/dashboard/works/_list_works.html.erb +4 -2
  396. data/app/views/hyrax/file_sets/_form.html.erb +16 -3
  397. data/app/views/hyrax/file_sets/_metadata.html.erb +35 -0
  398. data/app/views/hyrax/file_sets/_valkyrie_form.html.erb +37 -0
  399. data/app/views/hyrax/file_sets/edit.html.erb +14 -8
  400. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +4 -0
  401. data/app/views/hyrax/file_sets/media_display/_image.html.erb +2 -2
  402. data/app/views/hyrax/file_sets/media_display/_video.html.erb +4 -0
  403. data/app/views/hyrax/homepage/_explore_collections.html.erb +1 -1
  404. data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
  405. data/app/views/hyrax/homepage/_recent_document.html.erb +1 -1
  406. data/app/views/hyrax/homepage/robots.text.erb +17 -0
  407. data/app/views/hyrax/my/collections/_default_group.html.erb +3 -0
  408. data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -0
  409. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +2 -2
  410. data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +2 -2
  411. data/app/views/hyrax/my/works/_default_group.html.erb +3 -0
  412. data/app/views/hyrax/my/works/_list_works.html.erb +5 -2
  413. data/app/views/hyrax/shared/_copy_permalink.html.erb +10 -0
  414. data/app/views/hyrax/users/_user_info.html.erb +1 -6
  415. data/app/views/layouts/_head_tag_content.html.erb +2 -0
  416. data/app/views/layouts/hyrax/dashboard.html.erb +2 -1
  417. data/app/views/records/edit_fields/_contexts.html.erb +1 -0
  418. data/app/views/records/edit_fields/_license.html.erb +17 -5
  419. data/app/views/records/edit_fields/_resource_type.html.erb +16 -2
  420. data/app/views/records/edit_fields/_rights_statement.html.erb +17 -5
  421. data/app/views/records/edit_fields/_schema_version.html.erb +1 -0
  422. data/app/views/records/edit_fields/_transcript_ids.html.erb +18 -0
  423. data/app/views/records/show_fields/_rights.html.erb +1 -1
  424. data/app/views/shared/_citations.html.erb +46 -31
  425. data/app/views/shared/_schema_version.html.erb +38 -0
  426. data/bin/dev-entrypoint.sh +14 -4
  427. data/chart/hyrax/Chart.yaml +4 -4
  428. data/chart/hyrax/templates/ingress.yaml +3 -0
  429. data/chart/hyrax/values.yaml +10 -8
  430. data/config/features.rb +27 -0
  431. data/config/initializers/blacklight_dynamic_sitemap.rb +43 -0
  432. data/config/initializers/deprecation_patch.rb +27 -0
  433. data/config/initializers/hydra_works.rb +3 -0
  434. data/config/initializers/i18n_extensions.rb +197 -0
  435. data/config/initializers/storage_adapter_initializer.rb +15 -9
  436. data/config/locales/hyrax.de.yml +172 -54
  437. data/config/locales/hyrax.en.yml +183 -66
  438. data/config/locales/hyrax.es.yml +174 -49
  439. data/config/locales/hyrax.fr.yml +169 -45
  440. data/config/locales/hyrax.it.yml +172 -48
  441. data/config/locales/hyrax.pt-BR.yml +172 -54
  442. data/config/locales/hyrax.zh.yml +145 -21
  443. data/config/metadata/basic_metadata.yaml +66 -0
  444. data/config/metadata/batch_edit_metadata.yaml +119 -0
  445. data/config/metadata/file_set_metadata.yaml +19 -0
  446. data/config/metadata/redirects.yaml +15 -0
  447. data/config/metadata_profiles/m3_json_schema.json +487 -0
  448. data/config/metadata_profiles/m3_profile.yaml +954 -0
  449. data/config/routes.rb +9 -0
  450. data/docker-compose-allinson.yml +176 -0
  451. data/docker-compose-dassie.yml +14 -6
  452. data/docker-compose-koppie.yml +18 -10
  453. data/docker-compose-sirenia.yml +20 -10
  454. data/documentation/copy_permalink.md +29 -0
  455. data/documentation/developing-your-hyrax-based-app.md +2 -2
  456. data/documentation/file-ingest-characterization.md +763 -0
  457. data/documentation/flexible_metadata.md +113 -0
  458. data/documentation/forms/field_behaviors.md +297 -0
  459. data/documentation/redirects.md +428 -0
  460. data/hyrax.gemspec +7 -2
  461. data/lib/freyja/metadata_adapter.rb +1 -1
  462. data/lib/freyja/persister.rb +25 -1
  463. data/lib/generators/hyrax/collection_resource/collection_resource_generator.rb +2 -2
  464. data/lib/generators/hyrax/collection_resource/templates/collection.rb.erb +5 -1
  465. data/lib/generators/hyrax/collection_resource/templates/collection_form.rb.erb +5 -1
  466. data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +6 -1
  467. data/lib/generators/hyrax/iiif_viewer/USAGE +22 -0
  468. data/lib/generators/hyrax/iiif_viewer/iiif_viewer_generator.rb +49 -0
  469. data/lib/generators/hyrax/iiif_viewer/templates/_clover.html.erb +7 -0
  470. data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.css +3328 -0
  471. data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.html +16 -0
  472. data/lib/generators/hyrax/iiif_viewer/templates/clover/clover.js +237 -0
  473. data/lib/generators/hyrax/install_generator.rb +25 -1
  474. data/lib/generators/hyrax/riiif_generator.rb +1 -1
  475. data/lib/generators/hyrax/templates/app/views/blacklight_dynamic_sitemap/sitemap/show.xml.builder +22 -0
  476. data/lib/generators/hyrax/templates/config/clamav.rb +2 -0
  477. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +4 -80
  478. data/lib/generators/hyrax/templates/db/migrate/20240606205215_create_hyrax_flexible_schemas.rb.erb +9 -0
  479. data/lib/generators/hyrax/templates/db/migrate/20240606205216_add_contexts_to_hyrax_flexible_schemas.rb.erb +5 -0
  480. data/lib/generators/hyrax/templates/db/migrate/20260430000001_create_hyrax_redirect_paths.rb.erb +22 -0
  481. data/lib/generators/hyrax/templates/db/migrate/20260521003627_add_additional_redirect_info.rb.erb +39 -0
  482. data/lib/generators/hyrax/templates/package.json +1 -1
  483. data/lib/generators/hyrax/templates/uv.html +60 -82
  484. data/lib/generators/hyrax/work/templates/indexer.rb.erb +1 -1
  485. data/lib/generators/hyrax/work/templates/model.rb.erb +5 -1
  486. data/lib/generators/hyrax/work_resource/templates/form.rb.erb +5 -2
  487. data/lib/generators/hyrax/work_resource/templates/indexer.rb.erb +6 -2
  488. data/lib/generators/hyrax/work_resource/templates/work.rb.erb +5 -2
  489. data/lib/generators/hyrax/work_resource/work_resource_generator.rb +1 -0
  490. data/lib/hyrax/active_fedora_dummy_model.rb +6 -0
  491. data/lib/hyrax/configuration.rb +197 -3
  492. data/lib/hyrax/deprecation.rb +31 -0
  493. data/lib/hyrax/engine.rb +2 -0
  494. data/lib/hyrax/form_fields.rb +17 -5
  495. data/lib/hyrax/indexer.rb +31 -2
  496. data/lib/hyrax/resource_sync/resource_list_writer.rb +3 -0
  497. data/lib/hyrax/schema.rb +15 -4
  498. data/lib/hyrax/specs/shared_specs/factories/administrative_sets.rb +12 -0
  499. data/lib/hyrax/specs/shared_specs/factories/hyrax_embargo.rb +1 -1
  500. data/lib/hyrax/specs/shared_specs/factories/hyrax_file_set.rb +13 -0
  501. data/lib/hyrax/specs/shared_specs/factories/hyrax_lease.rb +5 -1
  502. data/lib/hyrax/specs/shared_specs/factories/hyrax_work.rb +14 -0
  503. data/lib/hyrax/specs/shared_specs/simple_work.rb +41 -0
  504. data/lib/hyrax/specs/shared_specs.rb +1 -0
  505. data/lib/hyrax/transactions/collection_create.rb +2 -1
  506. data/lib/hyrax/transactions/collection_destroy.rb +1 -0
  507. data/lib/hyrax/transactions/collection_update.rb +2 -1
  508. data/lib/hyrax/transactions/container.rb +28 -0
  509. data/lib/hyrax/transactions/steps/apply_permission_template_on_update.rb +65 -0
  510. data/lib/hyrax/transactions/steps/apply_workflow_on_admin_set_change.rb +97 -0
  511. data/lib/hyrax/transactions/steps/ensure_admin_set.rb +1 -1
  512. data/lib/hyrax/transactions/steps/remove_redirect_paths.rb +35 -0
  513. data/lib/hyrax/transactions/steps/save.rb +10 -0
  514. data/lib/hyrax/transactions/steps/set_default_admin_set.rb +1 -1
  515. data/lib/hyrax/transactions/steps/sync_redirect_paths.rb +141 -0
  516. data/lib/hyrax/transactions/work_create.rb +2 -1
  517. data/lib/hyrax/transactions/work_destroy.rb +1 -0
  518. data/lib/hyrax/transactions/work_update.rb +4 -1
  519. data/lib/hyrax/version.rb +1 -1
  520. data/lib/hyrax.rb +61 -0
  521. data/lib/tasks/m3_profile_cleanup.rake +35 -0
  522. data/template.rb +4 -1
  523. metadata +313 -19
  524. data/.dassie/public/robots.txt +0 -1
  525. data/.koppie/public/robots.txt +0 -1
  526. data/app/forms/concerns/hyrax/basic_metadata_form_fields_behavior.rb +0 -39
  527. data/app/views/catalog/_thumbnail_list_collection.html.erb +0 -4
@@ -0,0 +1,835 @@
1
+ [
2
+ {
3
+ "files": [
4
+ "spec/abilities/ability_spec.rb",
5
+ "spec/abilities/collection_type_ability_spec.rb",
6
+ "spec/abilities/operation_ability_spec.rb",
7
+ "spec/actors/hyrax/actors/apply_order_actor_spec.rb",
8
+ "spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb",
9
+ "spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb",
10
+ "spec/actors/hyrax/actors/featured_work_actor_spec.rb",
11
+ "spec/actors/hyrax/actors/generic_work_actor_spec.rb",
12
+ "spec/actors/hyrax/actors/null_actor_spec.rb",
13
+ "spec/actors/hyrax/actors/transfer_request_actor_spec.rb",
14
+ "spec/channels/hyrax/application_cable/channel_spec.rb",
15
+ "spec/controllers/catalog_controller_spec.rb",
16
+ "spec/controllers/hyrax/accepts_batches_controller_spec.rb",
17
+ "spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb",
18
+ "spec/controllers/hyrax/admin/permission_templates_controller_spec.rb",
19
+ "spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb",
20
+ "spec/controllers/hyrax/batch_edits_controller_spec.rb",
21
+ "spec/controllers/hyrax/contact_form_controller_spec.rb",
22
+ "spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb",
23
+ "spec/controllers/hyrax/depositors_controller_spec.rb",
24
+ "spec/controllers/hyrax/featured_works_controller_spec.rb",
25
+ "spec/controllers/hyrax/generic_works_controller_spec.rb",
26
+ "spec/controllers/hyrax/my/collections_controller_spec.rb",
27
+ "spec/controllers/hyrax/notifications_controller_spec.rb",
28
+ "spec/controllers/hyrax/resource_sync_controller_spec.rb",
29
+ "spec/controllers/hyrax/stats_controller_spec.rb",
30
+ "spec/controllers/hyrax/users_controller_spec.rb",
31
+ "spec/features/batch_create_spec.rb",
32
+ "spec/features/bulkrax_spec.rb",
33
+ "spec/features/collection_type_spec.rb",
34
+ "spec/features/create_collection_spec.rb",
35
+ "spec/features/dashboard/collection_spec.rb",
36
+ "spec/features/default_workflow_spec.rb",
37
+ "spec/features/edit_content_block_admin_spec.rb",
38
+ "spec/features/embargo_spec.rb",
39
+ "spec/features/iiif_manifest_spec.rb",
40
+ "spec/features/ownership_transfer_spec.rb",
41
+ "spec/features/static_pages_spec.rb",
42
+ "spec/features/workflow_roles_spec.rb",
43
+ "spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb",
44
+ "spec/forms/hyrax/forms/batch_upload_form_spec.rb",
45
+ "spec/forms/hyrax/forms/file_set_edit_form_spec.rb",
46
+ "spec/forms/hyrax/forms/resource_batch_edit_form_spec.rb",
47
+ "spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb",
48
+ "spec/helpers/hyrax/charts_helper_spec.rb",
49
+ "spec/helpers/hyrax/contact_form_helper_spec.rb",
50
+ "spec/helpers/hyrax/file_set_helper_spec.rb",
51
+ "spec/helpers/hyrax/permission_levels_helper_spec.rb",
52
+ "spec/helpers/hyrax_helper_spec.rb",
53
+ "spec/hyrax/publisher_spec.rb",
54
+ "spec/hyrax/transactions/admin_set_destroy_spec.rb",
55
+ "spec/hyrax/transactions/collection_destroy_spec.rb",
56
+ "spec/hyrax/transactions/steps/add_file_sets_spec.rb",
57
+ "spec/hyrax/transactions/steps/change_depositor_spec.rb",
58
+ "spec/hyrax/transactions/steps/delete_all_file_sets_spec.rb",
59
+ "spec/hyrax/transactions/steps/remove_from_membership_spec.rb",
60
+ "spec/hyrax/transactions/steps/save_spec.rb",
61
+ "spec/hyrax/transactions/steps/set_uploaded_date_unless_present_spec.rb",
62
+ "spec/hyrax/transactions/steps/validate_spec.rb",
63
+ "spec/hyrax/transactions/work_update_spec.rb",
64
+ "spec/indexers/concerns/hyrax/visibility_indexer_spec.rb",
65
+ "spec/indexers/hyrax/deep_indexing_service_spec.rb",
66
+ "spec/indexers/hyrax/indexers/file_set_indexer_spec.rb",
67
+ "spec/indexers/hyrax/pcdm_collection_indexer_spec.rb",
68
+ "spec/indexers/hyrax/valkyrie_work_indexer_spec.rb",
69
+ "spec/jobs/attach_files_to_work_job_spec.rb",
70
+ "spec/jobs/characterize_job_spec.rb",
71
+ "spec/jobs/content_new_version_event_job_spec.rb",
72
+ "spec/jobs/create_work_job_spec.rb",
73
+ "spec/jobs/hyrax/grant_edit_job_spec.rb",
74
+ "spec/jobs/hyrax/propagate_change_depositor_job_spec.rb",
75
+ "spec/jobs/hyrax/revoke_edit_job_spec.rb",
76
+ "spec/jobs/ingest_local_file_job_spec.rb",
77
+ "spec/jobs/migrate_resources_job_spec.rb",
78
+ "spec/jobs/valkyrie_create_derivatives_job_spec.rb",
79
+ "spec/lib/freyja/persister_spec.rb",
80
+ "spec/lib/frigg/persister_spec.rb",
81
+ "spec/lib/hyrax/arkivo/create_subscription_job_spec.rb",
82
+ "spec/lib/hyrax/collections/search_service_spec.rb",
83
+ "spec/lib/hyrax/move_all_works_to_admin_set_spec.rb",
84
+ "spec/lib/hyrax/resource_sync/change_list_writer_spec.rb",
85
+ "spec/lib/hyrax/rubocop/custom_cops_spec.rb",
86
+ "spec/lib/hyrax_spec.rb",
87
+ "spec/models/checksum_audit_log_spec.rb",
88
+ "spec/models/concerns/hyrax/collection_behavior_spec.rb",
89
+ "spec/models/concerns/hyrax/solr_document_behavior_spec.rb",
90
+ "spec/models/featured_work_list_spec.rb",
91
+ "spec/models/file_view_stat_spec.rb",
92
+ "spec/models/hyrax/administrative_set_spec.rb",
93
+ "spec/models/hyrax/collection_type_participant_spec.rb",
94
+ "spec/models/hyrax/download_spec.rb",
95
+ "spec/models/hyrax/flexible_schema_spec.rb",
96
+ "spec/models/hyrax/operation_spec.rb",
97
+ "spec/models/hyrax/permission_template_access_spec.rb",
98
+ "spec/models/hyrax/resource_spec.rb",
99
+ "spec/models/hyrax/work_behavior_spec.rb",
100
+ "spec/models/single_use_link_spec.rb",
101
+ "spec/models/sipity/entity_specific_responsibility_spec.rb",
102
+ "spec/models/sipity/role_spec.rb",
103
+ "spec/models/sipity/workflow_spec.rb",
104
+ "spec/models/sipity_spec.rb",
105
+ "spec/models/user_mailbox_spec.rb",
106
+ "spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb",
107
+ "spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb",
108
+ "spec/presenters/hyrax/admin_set_selection_presenter_spec.rb",
109
+ "spec/presenters/hyrax/embargo_presenter_spec.rb",
110
+ "spec/presenters/hyrax/google_scholar_presenter_spec.rb",
111
+ "spec/presenters/hyrax/lease_presenter_spec.rb",
112
+ "spec/presenters/hyrax/page_title_decorator_spec.rb",
113
+ "spec/presenters/hyrax/presenter_renderer_spec.rb",
114
+ "spec/presenters/hyrax/select_type_presenter_spec.rb",
115
+ "spec/presenters/hyrax/twitter_presenter_spec.rb",
116
+ "spec/presenters/hyrax/work_show_presenter_spec.rb",
117
+ "spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb",
118
+ "spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb",
119
+ "spec/requests/riiif_spec.rb",
120
+ "spec/routing/collection_permission_templates_routes_spec.rb",
121
+ "spec/routing/ownership_transfers_route_spec.rb",
122
+ "spec/routing/stats_route_spec.rb",
123
+ "spec/search_builders/hyrax/catalog_search_builder_spec.rb",
124
+ "spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb",
125
+ "spec/search_builders/hyrax/lease_search_builder_spec.rb",
126
+ "spec/search_builders/hyrax/my/works_search_builder_spec.rb",
127
+ "spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb",
128
+ "spec/services/hyrax/abstract_message_service_spec.rb",
129
+ "spec/services/hyrax/admin_set_service_spec.rb",
130
+ "spec/services/hyrax/change_content_depositor_service_spec.rb",
131
+ "spec/services/hyrax/characterization/valkyrie_characterization_service_spec.rb",
132
+ "spec/services/hyrax/collection_types/permissions_service_spec.rb",
133
+ "spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb",
134
+ "spec/services/hyrax/collections_service_spec.rb",
135
+ "spec/services/hyrax/custom_queries/find_by_property_value_spec.rb",
136
+ "spec/services/hyrax/custom_queries/find_many_by_alternate_ids_spec.rb",
137
+ "spec/services/hyrax/custom_queries/navigators/collection_members_spec.rb",
138
+ "spec/services/hyrax/database_migrator_spec.rb",
139
+ "spec/services/hyrax/edit_permissions_service_spec.rb",
140
+ "spec/services/hyrax/file_set_csv_service_spec.rb",
141
+ "spec/services/hyrax/file_set_visibility_propagator_spec.rb",
142
+ "spec/services/hyrax/flexible_schema_validators/class_validator_spec.rb",
143
+ "spec/services/hyrax/graph_exporter_spec.rb",
144
+ "spec/services/hyrax/iiif_authorization_service_spec.rb",
145
+ "spec/services/hyrax/license_service_spec.rb",
146
+ "spec/services/hyrax/listeners/file_set_lifecycle_notification_listener_spec.rb",
147
+ "spec/services/hyrax/listeners/workflow_listener_spec.rb",
148
+ "spec/services/hyrax/m3_schema_loader_spec.rb",
149
+ "spec/services/hyrax/multiple_membership_checker_spec.rb",
150
+ "spec/services/hyrax/persist_derivatives_spec.rb",
151
+ "spec/services/hyrax/repository_fixity_check_service_spec.rb",
152
+ "spec/services/hyrax/rights_statement_service_spec.rb",
153
+ "spec/services/hyrax/solr_query_builder_service_spec.rb",
154
+ "spec/services/hyrax/statistics/depositors/summary_spec.rb",
155
+ "spec/services/hyrax/statistics/users/over_time_spec.rb",
156
+ "spec/services/hyrax/thumbnail_path_service_spec.rb",
157
+ "spec/services/hyrax/valkyrie_upload_spec.rb",
158
+ "spec/services/hyrax/visibility_reader_spec.rb",
159
+ "spec/services/hyrax/work_resource_query_service_spec.rb",
160
+ "spec/services/hyrax/workflow/activate_object_spec.rb",
161
+ "spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb",
162
+ "spec/services/hyrax/workflow/notification_generator_spec.rb",
163
+ "spec/services/hyrax/workflow/permission_generator_spec.rb",
164
+ "spec/services/hyrax/workflow/state_machine_generator_spec.rb",
165
+ "spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb",
166
+ "spec/services/hyrax/works/migration_service_spec.rb",
167
+ "spec/utils/hyrax/required_data_seeder_spec.rb",
168
+ "spec/valkyrie/indexing/solr/indexing_adapter_spec.rb",
169
+ "spec/views/catalog/_index_list_default.html.erb_spec.rb",
170
+ "spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb",
171
+ "spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb",
172
+ "spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb",
173
+ "spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb",
174
+ "spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb",
175
+ "spec/views/hyrax/admin/stats/show.html.erb_spec.rb",
176
+ "spec/views/hyrax/base/_attributes.html.erb_spec.rb",
177
+ "spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb",
178
+ "spec/views/hyrax/base/_form_relationships.html.erb_spec.rb",
179
+ "spec/views/hyrax/base/_member.html.erb_spec.rb",
180
+ "spec/views/hyrax/base/edit.html.erb_spec.rb",
181
+ "spec/views/hyrax/base/unavailable.html.erb_spec.rb",
182
+ "spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb",
183
+ "spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb",
184
+ "spec/views/hyrax/collections/show.html.erb_spec.rb",
185
+ "spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb",
186
+ "spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb",
187
+ "spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb",
188
+ "spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb",
189
+ "spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb",
190
+ "spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb",
191
+ "spec/views/hyrax/depositors/index.html.erb_spec.rb",
192
+ "spec/views/hyrax/file_sets/_permission.html.erb_spec.rb",
193
+ "spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb",
194
+ "spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb",
195
+ "spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb",
196
+ "spec/views/hyrax/homepage/index.html.erb_spec.rb",
197
+ "spec/views/hyrax/my/_search_header.html.erb_spec.rb",
198
+ "spec/views/hyrax/my/facet.html.erb_spec.rb",
199
+ "spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb",
200
+ "spec/views/hyrax/users/_user_info.html.erb_spec.rb",
201
+ "spec/views/pages/edit.html.erb_spec.rb",
202
+ "spec/views/records/edit_fields/_language.html.erb_spec.rb",
203
+ "spec/wings/active_fedora_converter_spec.rb",
204
+ "spec/wings/model_transformer_spec.rb",
205
+ "spec/wings/services/custom_queries/find_file_metadata_spec.rb",
206
+ "spec/wings/services/custom_queries/navigators/child_file_sets_navigator_spec.rb",
207
+ "spec/wings/valkyrie/persister_spec.rb",
208
+ "spec/wings_spec.rb"
209
+ ]
210
+ },
211
+ {
212
+ "files": [
213
+ "spec/abilities/admin_ability_spec.rb",
214
+ "spec/abilities/embargo_and_lease_ability_spec.rb",
215
+ "spec/abilities/permission_template_ability_spec.rb",
216
+ "spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb",
217
+ "spec/actors/hyrax/actors/collections_membership_actor_spec.rb",
218
+ "spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb",
219
+ "spec/actors/hyrax/actors/file_actor_spec.rb",
220
+ "spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb",
221
+ "spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb",
222
+ "spec/actors/hyrax/actors/valkyrie_to_active_fedora_spec.rb",
223
+ "spec/channels/hyrax/application_cable/connection_spec.rb",
224
+ "spec/controllers/concerns/hyrax/collections_controller_behavior_spec.rb",
225
+ "spec/controllers/hyrax/admin/admin_sets_controller_spec.rb",
226
+ "spec/controllers/hyrax/admin/collection_types_controller_spec.rb",
227
+ "spec/controllers/hyrax/admin/stats_controller_spec.rb",
228
+ "spec/controllers/hyrax/admin/workflows_controller_spec.rb",
229
+ "spec/controllers/hyrax/batch_uploads_controller_spec.rb",
230
+ "spec/controllers/hyrax/content_blocks_controller_spec.rb",
231
+ "spec/controllers/hyrax/dashboard/profiles_controller_spec.rb",
232
+ "spec/controllers/hyrax/downloads_controller_spec.rb",
233
+ "spec/controllers/hyrax/file_sets_controller_spec.rb",
234
+ "spec/controllers/hyrax/homepage_controller_spec.rb",
235
+ "spec/controllers/hyrax/my/highlights_controller_spec.rb",
236
+ "spec/controllers/hyrax/operations_controller_spec.rb",
237
+ "spec/controllers/hyrax/single_use_links_controller_spec.rb",
238
+ "spec/controllers/hyrax/transfers_controller_spec.rb",
239
+ "spec/controllers/hyrax/workflow_actions_controller_spec.rb",
240
+ "spec/features/batch_edit_spec.rb",
241
+ "spec/features/catalog_search_spec.rb",
242
+ "spec/features/contact_form_spec.rb",
243
+ "spec/features/create_work_admin_spec.rb",
244
+ "spec/features/dashboard/display_admin_dashboard_spec.rb",
245
+ "spec/features/delete_resource_spec.rb",
246
+ "spec/features/edit_file_spec.rb",
247
+ "spec/features/file_manager_spec.rb",
248
+ "spec/features/lease_spec.rb",
249
+ "spec/features/proxy_spec.rb",
250
+ "spec/features/users_spec.rb",
251
+ "spec/features/workflow_state_changes_spec.rb",
252
+ "spec/forms/hyrax/forms/admin_set_form_spec.rb",
253
+ "spec/forms/hyrax/forms/collection_form_spec.rb",
254
+ "spec/forms/hyrax/forms/file_set_form_spec.rb",
255
+ "spec/forms/hyrax/forms/resource_form_spec.rb",
256
+ "spec/forms/hyrax/generic_work_form_spec.rb",
257
+ "spec/helpers/hyrax/citations_behaviors/formatters/apa_formatter_spec.rb",
258
+ "spec/helpers/hyrax/content_block_helper_spec.rb",
259
+ "spec/helpers/hyrax/iiif_helper_spec.rb",
260
+ "spec/helpers/hyrax/trophy_helper_spec.rb",
261
+ "spec/hyrax/controlled_vocabularies/location_spec.rb",
262
+ "spec/hyrax/resource_name_spec.rb",
263
+ "spec/hyrax/transactions/admin_set_update_spec.rb",
264
+ "spec/hyrax/transactions/collection_update_spec.rb",
265
+ "spec/hyrax/transactions/steps/add_to_collections_spec.rb",
266
+ "spec/hyrax/transactions/steps/check_for_empty_admin_set_spec.rb",
267
+ "spec/hyrax/transactions/steps/delete_resource_spec.rb",
268
+ "spec/hyrax/transactions/steps/save_access_control_spec.rb",
269
+ "spec/hyrax/transactions/steps/set_collection_type_gid_spec.rb",
270
+ "spec/hyrax/transactions/steps/set_user_as_creator_spec.rb",
271
+ "spec/hyrax/transactions/transaction_spec.rb",
272
+ "spec/hyrax/valkyrie_can_can_adapter_spec.rb",
273
+ "spec/indexers/hyrax/admin_set_indexer_spec.rb",
274
+ "spec/indexers/hyrax/file_set_indexer_spec.rb",
275
+ "spec/indexers/hyrax/indexers/pcdm_collection_indexer_spec.rb",
276
+ "spec/indexers/hyrax/valkyrie_collection_indexer_spec.rb",
277
+ "spec/inputs/controlled_vocabulary_input_spec.rb",
278
+ "spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb",
279
+ "spec/jobs/concerns/hyrax/queued_job_behavior_spec.rb",
280
+ "spec/jobs/content_restored_version_event_job_spec.rb",
281
+ "spec/jobs/embargo_expiry_job_spec.rb",
282
+ "spec/jobs/hyrax/grant_edit_to_members_job_spec.rb",
283
+ "spec/jobs/hyrax/queued_delete_job_spec.rb",
284
+ "spec/jobs/iiif_manifest_cache_prewarm_job_spec.rb",
285
+ "spec/jobs/inherit_permissions_job_spec.rb",
286
+ "spec/jobs/stream_notifications_job_spec.rb",
287
+ "spec/jobs/valkyrie_ingest_job_spec.rb",
288
+ "spec/lib/freyja/query_service_spec.rb",
289
+ "spec/lib/frigg/query_service_spec.rb",
290
+ "spec/lib/hyrax/arkivo/metadata_munger_spec.rb",
291
+ "spec/lib/hyrax/configuration_spec.rb",
292
+ "spec/lib/hyrax/name_spec.rb",
293
+ "spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb",
294
+ "spec/lib/hyrax/search_state_spec.rb",
295
+ "spec/matcher_tests/match_valkyrie_ids_with_af_ids_spec.rb",
296
+ "spec/models/collection_branding_info_spec.rb",
297
+ "spec/models/concerns/hyrax/flexibility_spec.rb",
298
+ "spec/models/concerns/hyrax/valkyrie_lazy_migration_spec.rb",
299
+ "spec/models/featured_work_spec.rb",
300
+ "spec/models/flipflop_spec.rb",
301
+ "spec/models/hyrax/base_spec.rb",
302
+ "spec/models/hyrax/collection_type_spec.rb",
303
+ "spec/models/hyrax/embargo_spec.rb",
304
+ "spec/models/hyrax/group_spec.rb",
305
+ "spec/models/hyrax/pageview_spec.rb",
306
+ "spec/models/hyrax/permission_template_spec.rb",
307
+ "spec/models/hyrax/uploaded_file_spec.rb",
308
+ "spec/models/hyrax/work_spec.rb",
309
+ "spec/models/sipity/agent_spec.rb",
310
+ "spec/models/sipity/notifiable_context_spec.rb",
311
+ "spec/models/sipity/workflow_action_spec.rb",
312
+ "spec/models/sipity/workflow_state_action_permission_spec.rb",
313
+ "spec/models/solr_document_spec.rb",
314
+ "spec/models/user_spec.rb",
315
+ "spec/presenters/hyrax/admin/repository_object_presenter_spec.rb",
316
+ "spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb",
317
+ "spec/presenters/hyrax/admin_stats_presenter_spec.rb",
318
+ "spec/presenters/hyrax/file_set_presenter_spec.rb",
319
+ "spec/presenters/hyrax/homepage_presenter_spec.rb",
320
+ "spec/presenters/hyrax/member_presenter_factory_spec.rb",
321
+ "spec/presenters/hyrax/pcdm_member_presenter_factory_spec.rb",
322
+ "spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb",
323
+ "spec/presenters/hyrax/single_use_link_presenter_spec.rb",
324
+ "spec/presenters/hyrax/user_profile_presenter_spec.rb",
325
+ "spec/presenters/hyrax/work_usage_spec.rb",
326
+ "spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb",
327
+ "spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb",
328
+ "spec/routing/admin_routes_spec.rb",
329
+ "spec/routing/dashboard_routes_spec.rb",
330
+ "spec/routing/resource_sync_spec.rb",
331
+ "spec/search_builders/hyrax/abstract_type_relation_spec.rb",
332
+ "spec/search_builders/hyrax/collection_member_search_builder_spec.rb",
333
+ "spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb",
334
+ "spec/search_builders/hyrax/my/collections_search_builder_spec.rb",
335
+ "spec/search_builders/hyrax/parent_collection_search_builder_spec.rb",
336
+ "spec/search_builders/hyrax/work_relation_spec.rb",
337
+ "spec/services/hyrax/access_control_list_spec.rb",
338
+ "spec/services/hyrax/batch_create_failure_service_spec.rb",
339
+ "spec/services/hyrax/change_depositor_service_spec.rb",
340
+ "spec/services/hyrax/child_types_spec.rb",
341
+ "spec/services/hyrax/collections/collection_member_search_service_spec.rb",
342
+ "spec/services/hyrax/collections/nested_collection_query_service_spec.rb",
343
+ "spec/services/hyrax/contextual_path_spec.rb",
344
+ "spec/services/hyrax/custom_queries/find_collections_by_type_spec.rb",
345
+ "spec/services/hyrax/custom_queries/navigators/child_collections_navigator_spec.rb",
346
+ "spec/services/hyrax/custom_queries/navigators/find_files_spec.rb",
347
+ "spec/services/hyrax/default_middleware_stack_spec.rb",
348
+ "spec/services/hyrax/embargo_manager_spec.rb",
349
+ "spec/services/hyrax/file_set_derivatives_service_spec.rb",
350
+ "spec/services/hyrax/find_objects_via_solr_service_spec.rb",
351
+ "spec/services/hyrax/flexible_schema_validators/core_metadata_validator_spec.rb",
352
+ "spec/services/hyrax/identifier/builder_spec.rb",
353
+ "spec/services/hyrax/import_url_failure_service_spec.rb",
354
+ "spec/services/hyrax/listeners/acl_index_listener_spec.rb",
355
+ "spec/services/hyrax/listeners/member_cleanup_listener_spec.rb",
356
+ "spec/services/hyrax/location_service_spec.rb",
357
+ "spec/services/hyrax/manifest_builder_service_spec.rb",
358
+ "spec/services/hyrax/noid_spec.rb",
359
+ "spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb",
360
+ "spec/services/hyrax/resource_status_spec.rb",
361
+ "spec/services/hyrax/riiif/file_resolver_spec.rb",
362
+ "spec/services/hyrax/solr_query_service_spec.rb",
363
+ "spec/services/hyrax/statistics/file_sets/by_format_spec.rb",
364
+ "spec/services/hyrax/statistics/works/by_depositor_spec.rb",
365
+ "spec/services/hyrax/tolerant_select_service_spec.rb",
366
+ "spec/services/hyrax/versioning_service_spec.rb",
367
+ "spec/services/hyrax/visibility_writer_spec.rb",
368
+ "spec/services/hyrax/work_uploads_handler_spec.rb",
369
+ "spec/services/hyrax/workflow/changes_required_notification_spec.rb",
370
+ "spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb",
371
+ "spec/services/hyrax/workflow/notification_service_spec.rb",
372
+ "spec/services/hyrax/workflow/permission_query_spec.rb",
373
+ "spec/services/hyrax/workflow/status_list_service_spec.rb",
374
+ "spec/services/hyrax/workflow/workflow_schema_spec.rb",
375
+ "spec/strategies/hyrax/strategies/yaml_strategy_spec.rb",
376
+ "spec/utils/hyrax/test_data_seeder_spec.rb",
377
+ "spec/valkyrie/indexing_adapter_spec.rb",
378
+ "spec/views/catalog/_search_form.html.erb_spec.rb",
379
+ "spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb",
380
+ "spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb",
381
+ "spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb",
382
+ "spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb",
383
+ "spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb",
384
+ "spec/views/hyrax/admin/users/index.html.erb_spec.rb",
385
+ "spec/views/hyrax/base/_citations.html.erb_spec.rb",
386
+ "spec/views/hyrax/base/_form_files.html.erb_spec.rb",
387
+ "spec/views/hyrax/base/_form_rendering.html.erb_spec.rb",
388
+ "spec/views/hyrax/base/_relationships.html.erb_spec.rb",
389
+ "spec/views/hyrax/base/show.html.erb_spec.rb",
390
+ "spec/views/hyrax/batch_edits/check_all_spec.rb",
391
+ "spec/views/hyrax/citations/work.html.erb_spec.rb",
392
+ "spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb",
393
+ "spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb",
394
+ "spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb",
395
+ "spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb",
396
+ "spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb",
397
+ "spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb",
398
+ "spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb",
399
+ "spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb",
400
+ "spec/views/hyrax/embargoes/index.html.erb_spec.rb",
401
+ "spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb",
402
+ "spec/views/hyrax/file_sets/_valkyrie_form.html.erb_spec.rb",
403
+ "spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb",
404
+ "spec/views/hyrax/homepage/_announcement.html.erb_spec.rb",
405
+ "spec/views/hyrax/homepage/robots.text.erb_spec.rb",
406
+ "spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb",
407
+ "spec/views/hyrax/my/works/_list_works.html.erb_spec.rb",
408
+ "spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb",
409
+ "spec/views/hyrax/users/index.html.erb_spec.rb",
410
+ "spec/views/pages/show.html.erb_spec.rb",
411
+ "spec/views/records/edit_fields/_subject.html.erb_spec.rb",
412
+ "spec/wings/attribute_transformer_spec.rb",
413
+ "spec/wings/orm_converter_spec.rb",
414
+ "spec/wings/services/custom_queries/find_ids_by_model_spec.rb",
415
+ "spec/wings/services/custom_queries/navigators/child_works_navigator_spec.rb",
416
+ "spec/wings/valkyrie/query_service_spec.rb"
417
+ ]
418
+ },
419
+ {
420
+ "files": [
421
+ "spec/abilities/admin_set_ability_spec.rb",
422
+ "spec/abilities/file_set_abilities_spec.rb",
423
+ "spec/abilities/proxies_and_transfer_abilities_spec.rb",
424
+ "spec/actors/hyrax/actors/attach_members_actor_spec.rb",
425
+ "spec/actors/hyrax/actors/create_with_files_actor_spec.rb",
426
+ "spec/actors/hyrax/actors/default_admin_set_actor_spec.rb",
427
+ "spec/actors/hyrax/actors/file_set_actor_spec.rb",
428
+ "spec/actors/hyrax/actors/lease_actor_spec.rb",
429
+ "spec/actors/hyrax/actors/ordered_members_actor_spec.rb",
430
+ "spec/authorities/qa/authorities/collections_spec.rb",
431
+ "spec/channels/hyrax/notifications_channel_spec.rb",
432
+ "spec/controllers/concerns/hyrax/flexible_catalog_behavior_spec.rb",
433
+ "spec/controllers/hyrax/admin/analytics/work_reports_controller_spec.rb",
434
+ "spec/controllers/hyrax/admin/features_controller_spec.rb",
435
+ "spec/controllers/hyrax/admin/strategies_controller_spec.rb",
436
+ "spec/controllers/hyrax/api/items_controller_spec.rb",
437
+ "spec/controllers/hyrax/citations_controller_spec.rb",
438
+ "spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb",
439
+ "spec/controllers/hyrax/dashboard/works_controller_spec.rb",
440
+ "spec/controllers/hyrax/embargoes_controller_spec.rb",
441
+ "spec/controllers/hyrax/fixity_checks_controller_spec.rb",
442
+ "spec/controllers/hyrax/leases_controller_spec.rb",
443
+ "spec/controllers/hyrax/my/shares_controller_spec.rb",
444
+ "spec/controllers/hyrax/pages_controller_spec.rb",
445
+ "spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb",
446
+ "spec/controllers/hyrax/trophies_controller_spec.rb",
447
+ "spec/features/actor_stack_spec.rb",
448
+ "spec/features/browse_catalog_spec.rb",
449
+ "spec/features/collection_multi_membership_spec.rb",
450
+ "spec/features/create_admin_set_spec.rb",
451
+ "spec/features/create_work_resource_spec.rb",
452
+ "spec/features/dashboard/display_dashboard_spec.rb",
453
+ "spec/features/delete_work_spec.rb",
454
+ "spec/features/edit_work_resource_spec.rb",
455
+ "spec/features/homepage_spec.rb",
456
+ "spec/features/monograph_deposit_spec.rb",
457
+ "spec/features/read_only_mode_spec.rb",
458
+ "spec/features/work_generator_spec.rb",
459
+ "spec/forms/hyrax/forms/admin/appearance_spec.rb",
460
+ "spec/forms/hyrax/forms/administrative_set_form_spec.rb",
461
+ "spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb",
462
+ "spec/forms/hyrax/forms/pcdm_collection_form_spec.rb",
463
+ "spec/forms/hyrax/forms/work_form_spec.rb",
464
+ "spec/helpers/hyrax/ability_helper_spec.rb",
465
+ "spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb",
466
+ "spec/helpers/hyrax/dashboard_helper_behavior_spec.rb",
467
+ "spec/helpers/hyrax/lease_helper_spec.rb",
468
+ "spec/helpers/hyrax/work_form_helper_spec.rb",
469
+ "spec/hyrax/health_checks/solr_check_spec.rb",
470
+ "spec/hyrax/schema_spec.rb",
471
+ "spec/hyrax/transactions/apply_change_set_spec.rb",
472
+ "spec/hyrax/transactions/file_set_destroy_spec.rb",
473
+ "spec/hyrax/transactions/steps/add_to_parent_spec.rb",
474
+ "spec/hyrax/transactions/steps/delete_access_control_spec.rb",
475
+ "spec/hyrax/transactions/steps/ensure_admin_set_spec.rb",
476
+ "spec/hyrax/transactions/steps/save_collection_banner_spec.rb",
477
+ "spec/hyrax/transactions/steps/set_default_admin_set_spec.rb",
478
+ "spec/hyrax/transactions/steps/set_user_as_depositor_spec.rb",
479
+ "spec/hyrax/transactions/work_create_spec.rb",
480
+ "spec/indexers/concerns/hyrax/indexer_spec.rb",
481
+ "spec/indexers/hyrax/administrative_set_indexer_spec.rb",
482
+ "spec/indexers/hyrax/generic_work_indexer_spec.rb",
483
+ "spec/indexers/hyrax/indexers/pcdm_object_indexer_spec.rb",
484
+ "spec/indexers/hyrax/valkyrie_file_set_indexer_spec.rb",
485
+ "spec/inputs/multifile_input_spec.rb",
486
+ "spec/jobs/batch_create_job_spec.rb",
487
+ "spec/jobs/content_delete_event_job_spec.rb",
488
+ "spec/jobs/content_update_event_job_spec.rb",
489
+ "spec/jobs/file_set_attached_event_job_spec.rb",
490
+ "spec/jobs/hyrax/grant_read_job_spec.rb",
491
+ "spec/jobs/hyrax/queued_indexing_job_spec.rb",
492
+ "spec/jobs/import_export_job_spec.rb",
493
+ "spec/jobs/lease_expiry_job_spec.rb",
494
+ "spec/jobs/user_edit_profile_event_job_spec.rb",
495
+ "spec/jobs/visibility_copy_job_spec.rb",
496
+ "spec/lib/freyja/resource_factory_spec.rb",
497
+ "spec/lib/hyrax/analytics_spec.rb",
498
+ "spec/lib/hyrax/arkivo/schema_validator_spec.rb",
499
+ "spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb",
500
+ "spec/lib/hyrax/redis_event_store_spec.rb",
501
+ "spec/lib/hyrax/resource_sync/source_description_writer_spec.rb",
502
+ "spec/lib/hyrax/zotero/config_spec.rb",
503
+ "spec/models/admin_set_spec.rb",
504
+ "spec/models/collection_spec.rb",
505
+ "spec/models/concerns/hyrax/naming_spec.rb",
506
+ "spec/models/concerns/hyrax/with_events_spec.rb",
507
+ "spec/models/file_download_stat_spec.rb",
508
+ "spec/models/generic_work_spec.rb",
509
+ "spec/models/hyrax/batch_create_operation_spec.rb",
510
+ "spec/models/hyrax/counter_metric_spec.rb",
511
+ "spec/models/hyrax/file_metadata_spec.rb",
512
+ "spec/models/hyrax/lease_spec.rb",
513
+ "spec/models/hyrax/pcdm_collection_spec.rb",
514
+ "spec/models/hyrax/permissions/readable_permissions_spec.rb",
515
+ "spec/models/hyrax/user_usage_stats_spec.rb",
516
+ "spec/models/job_io_wrapper_spec.rb",
517
+ "spec/models/sipity/comment_spec.rb",
518
+ "spec/models/sipity/notification_recipient_spec.rb",
519
+ "spec/models/sipity/workflow_responsibility_spec.rb",
520
+ "spec/models/sipity/workflow_state_action_spec.rb",
521
+ "spec/models/solr_hit_spec.rb",
522
+ "spec/models/work_view_stat_spec.rb",
523
+ "spec/presenters/hyrax/admin/user_activity_presenter_spec.rb",
524
+ "spec/presenters/hyrax/admin_set_options_presenter_spec.rb",
525
+ "spec/presenters/hyrax/collection_presenter_spec.rb",
526
+ "spec/presenters/hyrax/file_usage_spec.rb",
527
+ "spec/presenters/hyrax/iiif_manifest_presenter_spec.rb",
528
+ "spec/presenters/hyrax/menu_presenter_spec.rb",
529
+ "spec/presenters/hyrax/permission_badge_spec.rb",
530
+ "spec/presenters/hyrax/select_collection_type_presenter_spec.rb",
531
+ "spec/presenters/hyrax/transfers_presenter_spec.rb",
532
+ "spec/presenters/hyrax/version_list_presenter_spec.rb",
533
+ "spec/presenters/hyrax/workflow_presenter_spec.rb",
534
+ "spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb",
535
+ "spec/requests/blacklight_dynamic_sitemap/sitemap_spec.rb",
536
+ "spec/routing/api_route_spec.rb",
537
+ "spec/routing/featured_works_route_spec.rb",
538
+ "spec/routing/route_spec.rb",
539
+ "spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb",
540
+ "spec/search_builders/hyrax/collection_search_builder_spec.rb",
541
+ "spec/search_builders/hyrax/embargo_search_builder_spec.rb",
542
+ "spec/search_builders/hyrax/my/find_works_search_builder_spec.rb",
543
+ "spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb",
544
+ "spec/search_builders/hyrax/work_search_builder_spec.rb",
545
+ "spec/services/hyrax/admin_set_create_service_spec.rb",
546
+ "spec/services/hyrax/batch_create_success_service_spec.rb",
547
+ "spec/services/hyrax/characterization/file_set_description_spec.rb",
548
+ "spec/services/hyrax/collection_member_service_spec.rb",
549
+ "spec/services/hyrax/collections/collection_member_service_spec.rb",
550
+ "spec/services/hyrax/collections/permissions_create_service_spec.rb",
551
+ "spec/services/hyrax/curation_concern_spec.rb",
552
+ "spec/services/hyrax/custom_queries/find_file_metadata_spec.rb",
553
+ "spec/services/hyrax/custom_queries/navigators/child_file_sets_navigator_spec.rb",
554
+ "spec/services/hyrax/custom_queries/navigators/parent_collections_navigator_spec.rb",
555
+ "spec/services/hyrax/derivative_path_spec.rb",
556
+ "spec/services/hyrax/embargo_service_spec.rb",
557
+ "spec/services/hyrax/file_set_file_service_spec.rb",
558
+ "spec/services/hyrax/fixity_check_failure_service_spec.rb",
559
+ "spec/services/hyrax/flexible_schema_validators/existing_records_validator_spec.rb",
560
+ "spec/services/hyrax/identifier/dispatcher_spec.rb",
561
+ "spec/services/hyrax/lease_manager_spec.rb",
562
+ "spec/services/hyrax/listeners/batch_notification_listener_spec.rb",
563
+ "spec/services/hyrax/listeners/metadata_index_listener_spec.rb",
564
+ "spec/services/hyrax/lock_manager_spec.rb",
565
+ "spec/services/hyrax/messenger_service_spec.rb",
566
+ "spec/services/hyrax/permission_manager_spec.rb",
567
+ "spec/services/hyrax/qa_select_service_spec.rb",
568
+ "spec/services/hyrax/resource_types_service_spec.rb",
569
+ "spec/services/hyrax/schema_loader_spec.rb",
570
+ "spec/services/hyrax/solr_service_spec.rb",
571
+ "spec/services/hyrax/statistics/query_service_spec.rb",
572
+ "spec/services/hyrax/statistics/works/by_resource_type_spec.rb",
573
+ "spec/services/hyrax/user_stat_importer_spec.rb",
574
+ "spec/services/hyrax/visibility_intention_applicator_spec.rb",
575
+ "spec/services/hyrax/work_form_service_spec.rb",
576
+ "spec/services/hyrax/workflow/action_taken_service_spec.rb",
577
+ "spec/services/hyrax/workflow/deactivate_object_spec.rb",
578
+ "spec/services/hyrax/workflow/method_generator_spec.rb",
579
+ "spec/services/hyrax/workflow/object_in_workflow_decorator_spec.rb",
580
+ "spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb",
581
+ "spec/services/hyrax/workflow/workflow_factory_spec.rb",
582
+ "spec/services/hyrax/working_directory_spec.rb",
583
+ "spec/tasks/rake_spec.rb",
584
+ "spec/validators/hyrax/collection_membership_validator_spec.rb",
585
+ "spec/views/_flash_msg.html.erb_spec.rb",
586
+ "spec/views/collections/edit_fields/_based_near.html.erb_spec.rb",
587
+ "spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb",
588
+ "spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb",
589
+ "spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb",
590
+ "spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb",
591
+ "spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb",
592
+ "spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb",
593
+ "spec/views/hyrax/base/_currently_shared.html.erb_spec.rb",
594
+ "spec/views/hyrax/base/_form_metadata.html.erb_spec.rb",
595
+ "spec/views/hyrax/base/_form_share.erb_spec.rb",
596
+ "spec/views/hyrax/base/_show_actions.html.erb_spec.rb",
597
+ "spec/views/hyrax/base/show.json.jbuilder_spec.rb",
598
+ "spec/views/hyrax/batch_edits/edit.html.erb_spec.rb",
599
+ "spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb",
600
+ "spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb",
601
+ "spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb",
602
+ "spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb",
603
+ "spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb",
604
+ "spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb",
605
+ "spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb",
606
+ "spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb",
607
+ "spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb",
608
+ "spec/views/hyrax/file_sets/_actions.html.erb_spec.rb",
609
+ "spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb",
610
+ "spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb",
611
+ "spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb",
612
+ "spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb",
613
+ "spec/views/hyrax/leases/index.html.erb_spec.rb",
614
+ "spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb",
615
+ "spec/views/hyrax/my/works/index.html.erb_spec.rb",
616
+ "spec/views/hyrax/stats/file.html.erb_spec.rb",
617
+ "spec/views/hyrax/users/show.html.erb_spec.rb",
618
+ "spec/views/records/edit_fields/_based_near.html.erb_spec.rb",
619
+ "spec/views/shared/_citations.html.erb_spec.rb",
620
+ "spec/wings/converter_value_mapper_spec.rb",
621
+ "spec/wings/services/custom_queries/find_access_control_spec.rb",
622
+ "spec/wings/services/custom_queries/find_many_by_alternate_ids_spec.rb",
623
+ "spec/wings/transformer_value_mapper_spec.rb",
624
+ "spec/wings/valkyrie/resource_factory_spec.rb"
625
+ ]
626
+ },
627
+ {
628
+ "files": [
629
+ "spec/abilities/collection_ability_spec.rb",
630
+ "spec/abilities/generic_work_abilities_spec.rb",
631
+ "spec/actors/hyrax/actors/active_fedora_to_valkyrie_spec.rb",
632
+ "spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb",
633
+ "spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb",
634
+ "spec/actors/hyrax/actors/embargo_actor_spec.rb",
635
+ "spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb",
636
+ "spec/actors/hyrax/actors/model_actor_spec.rb",
637
+ "spec/actors/hyrax/actors/transactional_request_spec.rb",
638
+ "spec/authorities/qa/authorities/find_works_spec.rb",
639
+ "spec/config/hyrax_events_spec.rb",
640
+ "spec/controllers/concerns/hyrax/works_controller_behavior_spec.rb",
641
+ "spec/controllers/hyrax/admin/appearances_controller_spec.rb",
642
+ "spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb",
643
+ "spec/controllers/hyrax/admin/users_controller_spec.rb",
644
+ "spec/controllers/hyrax/api/zotero_controller_spec.rb",
645
+ "spec/controllers/hyrax/collections_controller_spec.rb",
646
+ "spec/controllers/hyrax/dashboard/collections_controller_spec.rb",
647
+ "spec/controllers/hyrax/dashboard_controller_spec.rb",
648
+ "spec/controllers/hyrax/featured_work_lists_controller_spec.rb",
649
+ "spec/controllers/hyrax/generic_works_controller_json_spec.rb",
650
+ "spec/controllers/hyrax/monographs_controller_spec.rb",
651
+ "spec/controllers/hyrax/my/works_controller_spec.rb",
652
+ "spec/controllers/hyrax/permissions_controller_spec.rb",
653
+ "spec/controllers/hyrax/static_controller_spec.rb",
654
+ "spec/controllers/hyrax/uploads_controller_spec.rb",
655
+ "spec/features/admin_spec.rb",
656
+ "spec/features/browse_dashboard_works_spec.rb",
657
+ "spec/features/collection_spec.rb",
658
+ "spec/features/create_child_work_spec.rb",
659
+ "spec/features/create_work_spec.rb",
660
+ "spec/features/dashboard/my_works_spec.rb",
661
+ "spec/features/deposit_agreements_spec.rb",
662
+ "spec/features/edit_work_spec.rb",
663
+ "spec/features/iiif_av_manifest_spec.rb",
664
+ "spec/features/notifications_spec.rb",
665
+ "spec/features/search_spec.rb",
666
+ "spec/features/work_show_spec.rb",
667
+ "spec/forms/hyrax/forms/admin/collection_type_form_spec.rb",
668
+ "spec/forms/hyrax/forms/batch_edit_form_spec.rb",
669
+ "spec/forms/hyrax/forms/failed_submission_form_wrapper_spec.rb",
670
+ "spec/forms/hyrax/forms/permission_template_form_spec.rb",
671
+ "spec/forms/hyrax/forms/workflow_action_form_spec.rb",
672
+ "spec/helpers/hyrax/batch_edits_helper_spec.rb",
673
+ "spec/helpers/hyrax/collections_helper_spec.rb",
674
+ "spec/helpers/hyrax/embargo_helper_spec.rb",
675
+ "spec/helpers/hyrax/membership_helper_spec.rb",
676
+ "spec/helpers/hyrax/workflows_helper_spec.rb",
677
+ "spec/hyrax/indexer_spec.rb",
678
+ "spec/hyrax/transactions/admin_set_create_spec.rb",
679
+ "spec/hyrax/transactions/collection_create_spec.rb",
680
+ "spec/hyrax/transactions/file_set_update_spec.rb",
681
+ "spec/hyrax/transactions/steps/apply_permission_template_spec.rb",
682
+ "spec/hyrax/transactions/steps/delete_all_file_metadata_spec.rb",
683
+ "spec/hyrax/transactions/steps/remove_file_set_from_work_spec.rb",
684
+ "spec/hyrax/transactions/steps/save_collection_logo_spec.rb",
685
+ "spec/hyrax/transactions/steps/set_modified_date_spec.rb",
686
+ "spec/hyrax/transactions/steps/update_work_members_spec.rb",
687
+ "spec/hyrax/transactions/work_destroy_spec.rb",
688
+ "spec/indexers/concerns/hyrax/permission_indexer_spec.rb",
689
+ "spec/indexers/hyrax/collection_indexer_spec.rb",
690
+ "spec/indexers/hyrax/indexers/administrative_set_indexer_spec.rb",
691
+ "spec/indexers/hyrax/indexers/resource_indexer_spec.rb",
692
+ "spec/indexers/hyrax/valkyrie_indexer_spec.rb",
693
+ "spec/javascripts/jasmine_spec.rb",
694
+ "spec/jobs/change_depositor_event_job_spec.rb",
695
+ "spec/jobs/content_deposit_event_job_spec.rb",
696
+ "spec/jobs/create_derivatives_job_spec.rb",
697
+ "spec/jobs/fixity_check_job_spec.rb",
698
+ "spec/jobs/hyrax/grant_read_to_members_job_spec.rb",
699
+ "spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb",
700
+ "spec/jobs/import_url_job_spec.rb",
701
+ "spec/jobs/migrate_files_to_valkyrie_job_spec.rb",
702
+ "spec/jobs/valkyrie_characterization_job_spec.rb",
703
+ "spec/lib/freyja/metadata_adapter_spec.rb",
704
+ "spec/lib/frigg/metadata_adapter_spec.rb",
705
+ "spec/lib/hyrax/arkivo/actor_spec.rb",
706
+ "spec/lib/hyrax/arkivo_spec.rb",
707
+ "spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb",
708
+ "spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb",
709
+ "spec/lib/hyrax/role_registry_spec.rb",
710
+ "spec/lib/hyrax/zotero_spec.rb",
711
+ "spec/models/batch_upload_item_spec.rb",
712
+ "spec/models/concerns/hyrax/ability_spec.rb",
713
+ "spec/models/concerns/hyrax/solr_document/ordered_members_spec.rb",
714
+ "spec/models/content_block_spec.rb",
715
+ "spec/models/file_set_spec.rb",
716
+ "spec/models/hyrax/access_control_spec.rb",
717
+ "spec/models/hyrax/change_set_spec.rb",
718
+ "spec/models/hyrax/default_administrative_set_spec.rb",
719
+ "spec/models/hyrax/file_set_spec.rb",
720
+ "spec/models/hyrax/model_registry_spec.rb",
721
+ "spec/models/hyrax/permission_spec.rb",
722
+ "spec/models/hyrax/permissions/writable_permissions_spec.rb",
723
+ "spec/models/hyrax/virus_scanner_spec.rb",
724
+ "spec/models/proxy_deposit_request_spec.rb",
725
+ "spec/models/sipity/entity_spec.rb",
726
+ "spec/models/sipity/notification_spec.rb",
727
+ "spec/models/sipity/workflow_role_spec.rb",
728
+ "spec/models/sipity/workflow_state_spec.rb",
729
+ "spec/models/trophy_spec.rb",
730
+ "spec/presenters/hyrax/admin/dashboard_presenter_spec.rb",
731
+ "spec/presenters/hyrax/admin/users_presenter_spec.rb",
732
+ "spec/presenters/hyrax/admin_set_presenter_spec.rb",
733
+ "spec/presenters/hyrax/dashboard/user_presenter_spec.rb",
734
+ "spec/presenters/hyrax/fixity_status_presenter_spec.rb",
735
+ "spec/presenters/hyrax/inspect_work_presenter_spec.rb",
736
+ "spec/presenters/hyrax/model_proxy_spec.rb",
737
+ "spec/presenters/hyrax/presenter_factory_spec.rb",
738
+ "spec/presenters/hyrax/select_type_list_presenter_spec.rb",
739
+ "spec/presenters/hyrax/trophy_presenter_spec.rb",
740
+ "spec/presenters/hyrax/version_presenter_spec.rb",
741
+ "spec/renderers/hyrax/renderers/attribute_renderer_spec.rb",
742
+ "spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb",
743
+ "spec/requests/legacy_routing_spec.rb",
744
+ "spec/routing/citations_route_spec.rb",
745
+ "spec/routing/operations_spec.rb",
746
+ "spec/routing/single_use_link_spec.rb",
747
+ "spec/search_builders/hyrax/admin_set_search_builder_spec.rb",
748
+ "spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb",
749
+ "spec/search_builders/hyrax/file_set_search_builder_spec.rb",
750
+ "spec/search_builders/hyrax/my/shares_search_builder_spec.rb",
751
+ "spec/search_builders/hyrax/single_collection_search_builder_spec.rb",
752
+ "spec/search_builders/hyrax/works_search_builder_spec.rb",
753
+ "spec/services/hyrax/admin_set_member_service_spec.rb",
754
+ "spec/services/hyrax/caching_iiif_manifest_builder_spec.rb",
755
+ "spec/services/hyrax/characterization/model_wrapper_spec.rb",
756
+ "spec/services/hyrax/collection_types/create_service_spec.rb",
757
+ "spec/services/hyrax/collections/managed_collections_service_spec.rb",
758
+ "spec/services/hyrax/collections/permissions_service_spec.rb",
759
+ "spec/services/hyrax/custom_queries/find_access_control_spec.rb",
760
+ "spec/services/hyrax/custom_queries/find_ids_by_model_spec.rb",
761
+ "spec/services/hyrax/custom_queries/navigators/child_works_navigator_spec.rb",
762
+ "spec/services/hyrax/custom_queries/navigators/parent_work_navigator_spec.rb",
763
+ "spec/services/hyrax/derivative_service_spec.rb",
764
+ "spec/services/hyrax/ensure_well_formed_admin_set_service_spec.rb",
765
+ "spec/services/hyrax/file_set_fixity_check_service_spec.rb",
766
+ "spec/services/hyrax/flexible_schema_validator_service_spec.rb",
767
+ "spec/services/hyrax/form_factory_spec.rb",
768
+ "spec/services/hyrax/identifier/registrar_spec.rb",
769
+ "spec/services/hyrax/lease_service_spec.rb",
770
+ "spec/services/hyrax/listeners/file_metadata_listener_spec.rb",
771
+ "spec/services/hyrax/listeners/proxy_deposit_listener_spec.rb",
772
+ "spec/services/hyrax/lockable_spec.rb",
773
+ "spec/services/hyrax/microdata_spec.rb",
774
+ "spec/services/hyrax/permission_template_applicator_spec.rb",
775
+ "spec/services/hyrax/quick_classification_query_spec.rb",
776
+ "spec/services/hyrax/resource_visibility_propagator_spec.rb",
777
+ "spec/services/hyrax/simple_schema_loader_spec.rb",
778
+ "spec/services/hyrax/statistics/collections/over_time_spec.rb",
779
+ "spec/services/hyrax/statistics/system_stats_spec.rb",
780
+ "spec/services/hyrax/statistics/works/count_spec.rb",
781
+ "spec/services/hyrax/valkyrie_persist_derivatives_spec.rb",
782
+ "spec/services/hyrax/visibility_intention_spec.rb",
783
+ "spec/services/hyrax/work_query_service_spec.rb",
784
+ "spec/services/hyrax/workflow/actionable_objects_spec.rb",
785
+ "spec/services/hyrax/workflow/deposited_notification_spec.rb",
786
+ "spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb",
787
+ "spec/services/hyrax/workflow/pending_review_notification_spec.rb",
788
+ "spec/services/hyrax/workflow/sipity_actions_generator_spec.rb",
789
+ "spec/services/hyrax/workflow/workflow_importer_spec.rb",
790
+ "spec/services/hyrax/works/managed_works_service_spec.rb",
791
+ "spec/utils/hyrax/data_maintenance_spec.rb",
792
+ "spec/valkyrie/indexing/redis_queue/indexing_adapter_spec.rb",
793
+ "spec/views/_user_util_links.html.erb_spec.rb",
794
+ "spec/views/content_blocks/edit.html.erb_spec.rb",
795
+ "spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb",
796
+ "spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb",
797
+ "spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb",
798
+ "spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb",
799
+ "spec/views/hyrax/admin/features/index.html.erb_spec.rb",
800
+ "spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb",
801
+ "spec/views/hyrax/base/_form.html.erb_spec.rb",
802
+ "spec/views/hyrax/base/_form_progress.html.erb_spec.rb",
803
+ "spec/views/hyrax/base/_items.html.erb_spec.rb",
804
+ "spec/views/hyrax/base/_social_media.html.erb_spec.rb",
805
+ "spec/views/hyrax/base/unauthorized.html.erb_spec.rb",
806
+ "spec/views/hyrax/batch_select/_add_button.html.erb_spec.rb",
807
+ "spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb",
808
+ "spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb",
809
+ "spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb",
810
+ "spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb",
811
+ "spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb",
812
+ "spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb",
813
+ "spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb",
814
+ "spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb",
815
+ "spec/views/hyrax/dashboard/show_user_spec.rb",
816
+ "spec/views/hyrax/file_sets/_metadata.html.erb_spec.rb",
817
+ "spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb",
818
+ "spec/views/hyrax/file_sets/edit.html.erb_spec.rb",
819
+ "spec/views/hyrax/file_sets/show.html.erb_spec.rb",
820
+ "spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb",
821
+ "spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb",
822
+ "spec/views/hyrax/my/collections/index.html.erb_spec.rb",
823
+ "spec/views/hyrax/permissions/confirm.html.erb_spec.rb",
824
+ "spec/views/hyrax/uploads/create.json.jbuilder_spec.rb",
825
+ "spec/views/layouts/error.html.erb_spec.rb",
826
+ "spec/views/records/edit_fields/_description.html.erb_spec.rb",
827
+ "spec/views/shared/select_work_type_modal.html.erb_spec.rb",
828
+ "spec/wings/hydra/works/services/add_file_to_file_set_spec.rb",
829
+ "spec/wings/services/custom_queries/find_collections_by_type_spec.rb",
830
+ "spec/wings/services/custom_queries/navigators/child_collections_navigator_spec.rb",
831
+ "spec/wings/valkyrie/metadata_adapter_spec.rb",
832
+ "spec/wings/valkyrie/storage_spec.rb"
833
+ ]
834
+ }
835
+ ]