hyrax 2.6.0 → 2.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +60 -33
- data/.gitignore +1 -0
- data/.regen +1 -0
- data/README.md +4 -4
- data/app/actors/hyrax/actors/attach_members_actor.rb +9 -2
- data/app/actors/hyrax/actors/collections_membership_actor.rb +10 -11
- data/app/actors/hyrax/actors/file_set_actor.rb +2 -2
- data/app/assets/javascripts/hyrax/autocomplete.es6 +29 -0
- data/app/assets/javascripts/hyrax/collections/editor.es6 +12 -2
- data/app/assets/javascripts/hyrax/editor.es6 +9 -10
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +2 -1
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +18 -7
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +1 -0
- data/app/helpers/hyrax/work_form_helper.rb +48 -0
- data/app/indexers/hyrax/collection_indexer.rb +1 -3
- data/app/indexers/hyrax/deep_indexing_service.rb +21 -12
- data/app/indexers/hyrax/file_set_indexer.rb +6 -1
- data/app/jobs/iiif_manifest_cache_prewarm_job.rb +16 -0
- data/app/models/concerns/hyrax/collection_behavior.rb +8 -34
- data/app/models/concerns/hyrax/solr_document/characterization.rb +5 -1
- data/app/models/concerns/hyrax/solr_document/metadata.rb +9 -7
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +46 -0
- data/app/models/concerns/hyrax/solr_document_behavior.rb +10 -0
- data/app/models/hyrax/uploaded_file.rb +0 -2
- data/app/presenters/hyrax/collection_presenter.rb +12 -1
- data/app/presenters/hyrax/displays_image.rb +41 -15
- data/app/presenters/hyrax/file_set_presenter.rb +5 -0
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +232 -0
- data/app/presenters/hyrax/member_presenter_factory.rb +1 -7
- data/app/search_builders/hyrax/embargo_search_builder.rb +1 -1
- data/app/search_builders/hyrax/lease_search_builder.rb +1 -1
- data/app/services/hyrax/caching_iiif_manifest_builder.rb +53 -0
- data/app/services/hyrax/file_set_csv_service.rb +1 -0
- data/app/services/hyrax/identifier/builder.rb +45 -0
- data/app/services/hyrax/identifier/dispatcher.rb +61 -0
- data/app/services/hyrax/identifier/registrar.rb +41 -0
- data/app/services/hyrax/manifest_builder_service.rb +88 -0
- data/app/services/hyrax/versioning_service.rb +9 -0
- data/app/services/hyrax/workflow/workflow_schema.rb +92 -32
- data/app/views/hyrax/base/_form.html.erb +1 -1
- data/app/views/hyrax/base/_form_progress.html.erb +4 -0
- data/app/views/hyrax/base/_guts4form.html.erb +7 -1
- data/app/views/hyrax/batch_uploads/_form.html.erb +1 -1
- data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
- data/config/features.rb +4 -0
- data/hyrax.gemspec +8 -6
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +5 -0
- data/lib/hyrax.rb +2 -0
- data/lib/hyrax/configuration.rb +15 -0
- data/lib/hyrax/engine.rb +1 -0
- data/lib/hyrax/specs/shared_specs.rb +1 -0
- data/lib/hyrax/specs/shared_specs/identifiers.rb +27 -0
- data/lib/hyrax/version.rb +1 -1
- data/template.rb +1 -1
- metadata +88 -1415
- data/spec/.gitignore +0 -1
- data/spec/abilities/ability_spec.rb +0 -183
- data/spec/abilities/admin_ability_spec.rb +0 -18
- data/spec/abilities/admin_set_ability_spec.rb +0 -177
- data/spec/abilities/collection_ability_spec.rb +0 -194
- data/spec/abilities/collection_type_ability_spec.rb +0 -72
- data/spec/abilities/embargo_and_lease_ability_spec.rb +0 -22
- data/spec/abilities/file_set_abilities_spec.rb +0 -70
- data/spec/abilities/generic_work_abilities_spec.rb +0 -63
- data/spec/abilities/operation_ability_spec.rb +0 -12
- data/spec/abilities/permission_template_ability_spec.rb +0 -145
- data/spec/abilities/proxies_and_transfer_abilities_spec.rb +0 -109
- data/spec/abilities/solr_document_ability_spec.rb +0 -27
- data/spec/actors/hyrax/actors/apply_order_actor_spec.rb +0 -92
- data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +0 -135
- data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +0 -68
- data/spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb +0 -24
- data/spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb +0 -25
- data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +0 -364
- data/spec/actors/hyrax/actors/create_with_files_actor_spec.rb +0 -60
- data/spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb +0 -41
- data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +0 -136
- data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +0 -49
- data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +0 -81
- data/spec/actors/hyrax/actors/embargo_actor_spec.rb +0 -37
- data/spec/actors/hyrax/actors/featured_work_actor_spec.rb +0 -38
- data/spec/actors/hyrax/actors/file_actor_spec.rb +0 -125
- data/spec/actors/hyrax/actors/file_set_actor_spec.rb +0 -347
- data/spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb +0 -35
- data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +0 -316
- data/spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb +0 -35
- data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +0 -445
- data/spec/actors/hyrax/actors/lease_actor_spec.rb +0 -54
- data/spec/actors/hyrax/actors/model_actor_spec.rb +0 -24
- data/spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb +0 -55
- data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +0 -59
- data/spec/actors/hyrax/actors/transactional_request_spec.rb +0 -46
- data/spec/actors/hyrax/actors/transfer_request_actor_spec.rb +0 -43
- data/spec/authorities/qa/authorities/collections_spec.rb +0 -68
- data/spec/authorities/qa/authorities/find_works_spec.rb +0 -52
- data/spec/channels/hyrax/application_cable/channel_spec.rb +0 -14
- data/spec/channels/hyrax/application_cable/connection_spec.rb +0 -37
- data/spec/channels/hyrax/notifications_channel_spec.rb +0 -45
- data/spec/config/hyrax_events_spec.rb +0 -44
- data/spec/controllers/catalog_controller_spec.rb +0 -135
- data/spec/controllers/hyrax/accepts_batches_controller_spec.rb +0 -67
- data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +0 -284
- data/spec/controllers/hyrax/admin/appearances_controller_spec.rb +0 -66
- data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +0 -152
- data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +0 -322
- data/spec/controllers/hyrax/admin/features_controller_spec.rb +0 -31
- data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +0 -101
- data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +0 -71
- data/spec/controllers/hyrax/admin/stats_controller_spec.rb +0 -61
- data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +0 -39
- data/spec/controllers/hyrax/admin/users_controller_spec.rb +0 -17
- data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +0 -76
- data/spec/controllers/hyrax/admin/workflows_controller_spec.rb +0 -18
- data/spec/controllers/hyrax/api/items_controller_spec.rb +0 -404
- data/spec/controllers/hyrax/api/zotero_controller_spec.rb +0 -162
- data/spec/controllers/hyrax/batch_edits_controller_spec.rb +0 -232
- data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +0 -131
- data/spec/controllers/hyrax/citations_controller_spec.rb +0 -61
- data/spec/controllers/hyrax/collections_controller_spec.rb +0 -126
- data/spec/controllers/hyrax/contact_form_controller_spec.rb +0 -96
- data/spec/controllers/hyrax/content_blocks_controller_spec.rb +0 -71
- data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +0 -411
- data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +0 -518
- data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +0 -360
- data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +0 -155
- data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +0 -13
- data/spec/controllers/hyrax/dashboard_controller_spec.rb +0 -42
- data/spec/controllers/hyrax/depositors_controller_spec.rb +0 -105
- data/spec/controllers/hyrax/downloads_controller_spec.rb +0 -159
- data/spec/controllers/hyrax/embargoes_controller_spec.rb +0 -147
- data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +0 -20
- data/spec/controllers/hyrax/featured_works_controller_spec.rb +0 -56
- data/spec/controllers/hyrax/file_sets_controller_spec.rb +0 -322
- data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +0 -44
- data/spec/controllers/hyrax/generic_works_controller_json_spec.rb +0 -92
- data/spec/controllers/hyrax/generic_works_controller_spec.rb +0 -622
- data/spec/controllers/hyrax/homepage_controller_spec.rb +0 -138
- data/spec/controllers/hyrax/leases_controller_spec.rb +0 -117
- data/spec/controllers/hyrax/my/collections_controller_spec.rb +0 -36
- data/spec/controllers/hyrax/my/highlights_controller_spec.rb +0 -53
- data/spec/controllers/hyrax/my/shares_controller_spec.rb +0 -47
- data/spec/controllers/hyrax/my/works_controller_spec.rb +0 -54
- data/spec/controllers/hyrax/notifications_controller_spec.rb +0 -33
- data/spec/controllers/hyrax/operations_controller_spec.rb +0 -27
- data/spec/controllers/hyrax/pages_controller_spec.rb +0 -111
- data/spec/controllers/hyrax/permissions_controller_spec.rb +0 -56
- data/spec/controllers/hyrax/resource_sync_controller_spec.rb +0 -71
- data/spec/controllers/hyrax/single_use_links_controller_spec.rb +0 -100
- data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +0 -64
- data/spec/controllers/hyrax/static_controller_spec.rb +0 -28
- data/spec/controllers/hyrax/stats_controller_spec.rb +0 -73
- data/spec/controllers/hyrax/transfers_controller_spec.rb +0 -200
- data/spec/controllers/hyrax/trophies_controller_spec.rb +0 -40
- data/spec/controllers/hyrax/uploads_controller_spec.rb +0 -60
- data/spec/controllers/hyrax/users_controller_spec.rb +0 -151
- data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +0 -54
- data/spec/conversions/power_converters/polymorphic_type_spec.rb +0 -22
- data/spec/conversions/power_converters/sipity_action_name_spec.rb +0 -32
- data/spec/conversions/power_converters/sipity_action_spec.rb +0 -43
- data/spec/conversions/power_converters/sipity_agent_spec.rb +0 -20
- data/spec/conversions/power_converters/sipity_entity_spec.rb +0 -53
- data/spec/conversions/power_converters/sipity_role_spec.rb +0 -31
- data/spec/conversions/power_converters/sipity_workflow_id_spec.rb +0 -28
- data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +0 -20
- data/spec/factories/admin_sets.rb +0 -25
- data/spec/factories/admin_sets_lw.rb +0 -215
- data/spec/factories/api_items.rb +0 -91
- data/spec/factories/collection_branding_infos.rb +0 -11
- data/spec/factories/collection_type_participants.rb +0 -8
- data/spec/factories/collection_types.rb +0 -113
- data/spec/factories/collections.rb +0 -325
- data/spec/factories/collections_factory.rb +0 -134
- data/spec/factories/content_blocks.rb +0 -4
- data/spec/factories/featured_works.rb +0 -4
- data/spec/factories/file_sets.rb +0 -33
- data/spec/factories/generic_works.rb +0 -196
- data/spec/factories/object_id.rb +0 -6
- data/spec/factories/operations.rb +0 -21
- data/spec/factories/permission_template_accesses.rb +0 -16
- data/spec/factories/permission_templates.rb +0 -79
- data/spec/factories/proxy_deposit_requests.rb +0 -6
- data/spec/factories/single_use_links.rb +0 -13
- data/spec/factories/sipity_entities.rb +0 -7
- data/spec/factories/uploaded_files.rb +0 -5
- data/spec/factories/users.rb +0 -59
- data/spec/factories/workflow_actions.rb +0 -6
- data/spec/factories/workflow_states.rb +0 -6
- data/spec/factories/workflows.rb +0 -6
- data/spec/factory_tests/adminsets_factory_spec.rb +0 -132
- data/spec/factory_tests/collections_factory_spec.rb +0 -212
- data/spec/features/actor_stack_spec.rb +0 -77
- data/spec/features/admin_spec.rb +0 -30
- data/spec/features/batch_create_spec.rb +0 -75
- data/spec/features/batch_edit_spec.rb +0 -119
- data/spec/features/browse_catalog_spec.rb +0 -59
- data/spec/features/browse_dashboard_works_spec.rb +0 -56
- data/spec/features/catalog_search_spec.rb +0 -72
- data/spec/features/collection_multi_membership_spec.rb +0 -205
- data/spec/features/collection_spec.rb +0 -122
- data/spec/features/collection_type_spec.rb +0 -393
- data/spec/features/contact_form_spec.rb +0 -16
- data/spec/features/create_child_work_spec.rb +0 -82
- data/spec/features/create_work_admin_spec.rb +0 -44
- data/spec/features/create_work_spec.rb +0 -124
- data/spec/features/dashboard/all_works.rb +0 -23
- data/spec/features/dashboard/collection_spec.rb +0 -918
- data/spec/features/dashboard/display_admin_dashboard_spec.rb +0 -29
- data/spec/features/dashboard/display_dashboard_spec.rb +0 -18
- data/spec/features/delete_work_spec.rb +0 -23
- data/spec/features/edit_content_block_admin_spec.rb +0 -62
- data/spec/features/edit_file_spec.rb +0 -23
- data/spec/features/edit_work_spec.rb +0 -61
- data/spec/features/embargo_spec.rb +0 -90
- data/spec/features/homepage_spec.rb +0 -43
- data/spec/features/lease_spec.rb +0 -35
- data/spec/features/notifications_spec.rb +0 -20
- data/spec/features/ownership_transfer_spec.rb +0 -101
- data/spec/features/proxy_spec.rb +0 -25
- data/spec/features/search_spec.rb +0 -62
- data/spec/features/static_pages_spec.rb +0 -7
- data/spec/features/users_spec.rb +0 -48
- data/spec/features/work_generator_spec.rb +0 -29
- data/spec/features/work_show_spec.rb +0 -148
- data/spec/features/workflow_roles_spec.rb +0 -46
- data/spec/features/workflow_state_changes_spec.rb +0 -59
- data/spec/fixtures/1.5mb-avatar.jpg +0 -0
- data/spec/fixtures/4-20.png +0 -0
- data/spec/fixtures/Example.ogg +0 -0
- data/spec/fixtures/authorities/licenses.yml +0 -13
- data/spec/fixtures/charter.docx +0 -0
- data/spec/fixtures/config/schema_org.yml +0 -7
- data/spec/fixtures/config/schema_org_second.yml +0 -7
- data/spec/fixtures/countdown.avi +0 -0
- data/spec/fixtures/docx_fits.xml +0 -21
- data/spec/fixtures/dublin_core_rdf_descMetadata.nt +0 -13
- data/spec/fixtures/hyrax/.gitignore +0 -1
- data/spec/fixtures/hyrax/hyrax_test4.pdf +0 -0
- data/spec/fixtures/hyrax/hyrax_test5.mp3 +0 -0
- data/spec/fixtures/hyrax_generic_stub.txt +0 -1
- data/spec/fixtures/icons.zip +0 -0
- data/spec/fixtures/image.jp2 +0 -0
- data/spec/fixtures/image.jpg +0 -0
- data/spec/fixtures/image.png +0 -0
- data/spec/fixtures/jp2_fits.xml +0 -36
- data/spec/fixtures/jpg_fits.xml +0 -43
- data/spec/fixtures/mp3_fits.xml +0 -32
- data/spec/fixtures/pdf_fits.xml +0 -43
- data/spec/fixtures/piano_note.wav +0 -0
- data/spec/fixtures/png_fits.xml +0 -29
- data/spec/fixtures/sample_mpeg4.mp4 +0 -0
- data/spec/fixtures/small_file.txt +0 -1
- data/spec/fixtures/spoken-text.m4a +0 -0
- data/spec/fixtures/txt_fits.xml +0 -29
- data/spec/fixtures/world.png +0 -0
- data/spec/fixtures/xls_fits.xml +0 -18
- data/spec/fixtures/xml_fits.xml +0 -37
- data/spec/forms/hyrax/forms/admin/appearance_spec.rb +0 -46
- data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +0 -108
- data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +0 -10
- data/spec/forms/hyrax/forms/admin_set_form_spec.rb +0 -88
- data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +0 -111
- data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +0 -75
- data/spec/forms/hyrax/forms/collection_form_spec.rb +0 -196
- data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +0 -159
- data/spec/forms/hyrax/forms/file_manager_form_spec.rb +0 -19
- data/spec/forms/hyrax/forms/file_set_edit_form_spec.rb +0 -53
- data/spec/forms/hyrax/forms/permission_template_form_spec.rb +0 -599
- data/spec/forms/hyrax/forms/work_form_spec.rb +0 -346
- data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +0 -129
- data/spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb +0 -41
- data/spec/forms/hyrax/generic_work_form_spec.rb +0 -127
- data/spec/helpers/blacklight_helper_spec.rb +0 -137
- data/spec/helpers/hyrax/ability_helper_spec.rb +0 -61
- data/spec/helpers/hyrax/batch_edits_helper_spec.rb +0 -59
- data/spec/helpers/hyrax/charts_helper_spec.rb +0 -63
- data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +0 -10
- data/spec/helpers/hyrax/collections_helper_spec.rb +0 -117
- data/spec/helpers/hyrax/content_block_helper_spec.rb +0 -44
- data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +0 -74
- data/spec/helpers/hyrax/file_set_helper_spec.rb +0 -65
- data/spec/helpers/hyrax/iiif_helper_spec.rb +0 -44
- data/spec/helpers/hyrax/trophy_helper_spec.rb +0 -37
- data/spec/helpers/hyrax_helper_spec.rb +0 -399
- data/spec/hyrax/transactions/create_work_spec.rb +0 -155
- data/spec/hyrax/transactions/steps/apply_permission_template_spec.rb +0 -72
- data/spec/hyrax/transactions/steps/ensure_admin_set_spec.rb +0 -25
- data/spec/hyrax/transactions/steps/ensure_permission_template_spec.rb +0 -33
- data/spec/hyrax/transactions/steps/save_work_spec.rb +0 -32
- data/spec/hyrax/transactions/steps/set_default_admin_set_spec.rb +0 -38
- data/spec/hyrax/transactions/steps/set_modified_date_spec.rb +0 -22
- data/spec/hyrax/transactions/steps/set_uploaded_date_spec.rb +0 -32
- data/spec/indexers/hyrax/collection_indexer_spec.rb +0 -43
- data/spec/indexers/hyrax/file_set_indexer_spec.rb +0 -126
- data/spec/indexers/hyrax/generic_work_indexer_spec.rb +0 -123
- data/spec/indexers/hyrax/repository_reindexer_spec.rb +0 -8
- data/spec/inputs/controlled_vocabulary_input_spec.rb +0 -57
- data/spec/inputs/multifile_input_spec.rb +0 -31
- data/spec/javascripts/authority_select_spec.js +0 -22
- data/spec/javascripts/autocomplete_spec.js.coffee +0 -199
- data/spec/javascripts/batch_select_spec.js +0 -15
- data/spec/javascripts/charts_spec.coffee +0 -10
- data/spec/javascripts/checklist_item_spec.js +0 -23
- data/spec/javascripts/deposit_agreement_spec.js +0 -70
- data/spec/javascripts/file_manager_member_spec.coffee +0 -88
- data/spec/javascripts/file_manager_sorting_spec.coffee +0 -23
- data/spec/javascripts/fixtures/chart_example.html +0 -1
- data/spec/javascripts/fixtures/dashboard_batch_forms.html +0 -11
- data/spec/javascripts/fixtures/file_manager_member.html +0 -40
- data/spec/javascripts/fixtures/save_button.html +0 -3
- data/spec/javascripts/fixtures/sortable.html +0 -182
- data/spec/javascripts/fixtures/sul_table.html +0 -29
- data/spec/javascripts/grant_spec.js +0 -43
- data/spec/javascripts/helpers/jasmine-ajax.js +0 -751
- data/spec/javascripts/helpers/jasmine-jquery.js +0 -838
- data/spec/javascripts/helpers/test_fixtures.js.coffee +0 -18
- data/spec/javascripts/helpers/test_responses.js +0 -12
- data/spec/javascripts/jasmine_spec.rb +0 -25
- data/spec/javascripts/relationships_control_spec.js.coffee +0 -27
- data/spec/javascripts/required_field_spec.js +0 -41
- data/spec/javascripts/save_manager_spec.coffee +0 -87
- data/spec/javascripts/save_work_spec.js +0 -262
- data/spec/javascripts/settings_spec.js +0 -74
- data/spec/javascripts/single_use_links_spec.coffee +0 -51
- data/spec/javascripts/support/jasmine.yml +0 -125
- data/spec/javascripts/support/jasmine_helper.rb +0 -14
- data/spec/javascripts/tabs_spec.js.coffee +0 -38
- data/spec/javascripts/uploaded_files_spec.js +0 -23
- data/spec/javascripts/visibility_component_spec.js +0 -531
- data/spec/jobs/attach_files_to_work_job_spec.rb +0 -80
- data/spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb +0 -13
- data/spec/jobs/batch_create_job_spec.rb +0 -79
- data/spec/jobs/characterize_job_spec.rb +0 -66
- data/spec/jobs/content_delete_event_job_spec.rb +0 -36
- data/spec/jobs/content_deposit_event_job_spec.rb +0 -25
- data/spec/jobs/content_depositor_change_event_job_spec.rb +0 -28
- data/spec/jobs/content_new_version_event_job_spec.rb +0 -21
- data/spec/jobs/content_restored_version_event_job_spec.rb +0 -28
- data/spec/jobs/content_update_event_job_spec.rb +0 -25
- data/spec/jobs/create_derivatives_job_spec.rb +0 -93
- data/spec/jobs/create_work_job_spec.rb +0 -60
- data/spec/jobs/file_set_attached_event_job_spec.rb +0 -34
- data/spec/jobs/fixity_check_job_spec.rb +0 -50
- data/spec/jobs/hyrax/grant_edit_job_spec.rb +0 -11
- data/spec/jobs/hyrax/grant_edit_to_members_job_spec.rb +0 -16
- data/spec/jobs/hyrax/grant_read_job_spec.rb +0 -11
- data/spec/jobs/hyrax/grant_read_to_members_job_spec.rb +0 -16
- data/spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb +0 -16
- data/spec/jobs/hyrax/revoke_edit_job_spec.rb +0 -11
- data/spec/jobs/import_export_job_spec.rb +0 -28
- data/spec/jobs/import_url_job_spec.rb +0 -180
- data/spec/jobs/ingest_local_file_job_spec.rb +0 -40
- data/spec/jobs/inherit_permissions_job_spec.rb +0 -94
- data/spec/jobs/stream_notifications_job_spec.rb +0 -45
- data/spec/jobs/user_edit_profile_event_job_spec.rb +0 -17
- data/spec/jobs/visibility_copy_job_spec.rb +0 -53
- data/spec/lib/hyrax/analytics_spec.rb +0 -65
- data/spec/lib/hyrax/arkivo/actor_spec.rb +0 -78
- data/spec/lib/hyrax/arkivo/create_subscription_job_spec.rb +0 -50
- data/spec/lib/hyrax/arkivo/metadata_munger_spec.rb +0 -46
- data/spec/lib/hyrax/arkivo/schema_validator_spec.rb +0 -63
- data/spec/lib/hyrax/arkivo_spec.rb +0 -12
- data/spec/lib/hyrax/collections/search_service_spec.rb +0 -35
- data/spec/lib/hyrax/configuration_spec.rb +0 -91
- data/spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb +0 -33
- data/spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb +0 -24
- data/spec/lib/hyrax/move_all_works_to_admin_set_spec.rb +0 -13
- data/spec/lib/hyrax/name_spec.rb +0 -21
- data/spec/lib/hyrax/redis_event_store_spec.rb +0 -54
- data/spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb +0 -33
- data/spec/lib/hyrax/resource_sync/change_list_writer_spec.rb +0 -78
- data/spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb +0 -25
- data/spec/lib/hyrax/resource_sync/source_description_writer_spec.rb +0 -18
- data/spec/lib/hyrax/role_registry_spec.rb +0 -43
- data/spec/lib/hyrax/search_state_spec.rb +0 -26
- data/spec/lib/hyrax/zotero/config_spec.rb +0 -26
- data/spec/lib/hyrax/zotero_spec.rb +0 -9
- data/spec/lib/hyrax_spec.rb +0 -9
- data/spec/models/admin_set_spec.rb +0 -229
- data/spec/models/batch_upload_item_spec.rb +0 -7
- data/spec/models/checksum_audit_log_spec.rb +0 -162
- data/spec/models/collection_branding_info_spec.rb +0 -61
- data/spec/models/collection_spec.rb +0 -326
- data/spec/models/concerns/hyrax/collection_nesting_spec.rb +0 -83
- data/spec/models/content_block_spec.rb +0 -198
- data/spec/models/featured_work_list_spec.rb +0 -56
- data/spec/models/featured_work_spec.rb +0 -53
- data/spec/models/file_download_stat_spec.rb +0 -104
- data/spec/models/file_set_spec.rb +0 -668
- data/spec/models/file_view_stat_spec.rb +0 -81
- data/spec/models/flipflop_spec.rb +0 -49
- data/spec/models/generic_work_spec.rb +0 -117
- data/spec/models/hyrax/batch_create_operation_spec.rb +0 -59
- data/spec/models/hyrax/collection_type_participant_spec.rb +0 -43
- data/spec/models/hyrax/collection_type_spec.rb +0 -236
- data/spec/models/hyrax/download_spec.rb +0 -13
- data/spec/models/hyrax/operation_spec.rb +0 -123
- data/spec/models/hyrax/pageview_spec.rb +0 -13
- data/spec/models/hyrax/permission_template_access_spec.rb +0 -180
- data/spec/models/hyrax/permission_template_spec.rb +0 -291
- data/spec/models/hyrax/permissions/readable_permissions_spec.rb +0 -52
- data/spec/models/hyrax/permissions/writable_permissions_spec.rb +0 -12
- data/spec/models/hyrax/uploaded_file_spec.rb +0 -10
- data/spec/models/hyrax/user_usage_stats_spec.rb +0 -43
- data/spec/models/hyrax/work_behavior_spec.rb +0 -64
- data/spec/models/job_io_wrapper_spec.rb +0 -172
- data/spec/models/proxy_deposit_request_spec.rb +0 -152
- data/spec/models/single_use_link_spec.rb +0 -37
- data/spec/models/sipity/agent_spec.rb +0 -8
- data/spec/models/sipity/comment_spec.rb +0 -24
- data/spec/models/sipity/entity_spec.rb +0 -27
- data/spec/models/sipity/entity_specific_responsibility_spec.rb +0 -9
- data/spec/models/sipity/notifiable_context_spec.rb +0 -7
- data/spec/models/sipity/notification_recipient_spec.rb +0 -9
- data/spec/models/sipity/notification_spec.rb +0 -15
- data/spec/models/sipity/role_spec.rb +0 -40
- data/spec/models/sipity/workflow_action_spec.rb +0 -11
- data/spec/models/sipity/workflow_responsibility_spec.rb +0 -8
- data/spec/models/sipity/workflow_role_spec.rb +0 -8
- data/spec/models/sipity/workflow_spec.rb +0 -84
- data/spec/models/sipity/workflow_state_action_permission_spec.rb +0 -8
- data/spec/models/sipity/workflow_state_action_spec.rb +0 -8
- data/spec/models/sipity/workflow_state_spec.rb +0 -17
- data/spec/models/solr_document_spec.rb +0 -205
- data/spec/models/trophy_spec.rb +0 -19
- data/spec/models/user_mailbox_spec.rb +0 -134
- data/spec/models/user_spec.rb +0 -269
- data/spec/models/work_view_stat_spec.rb +0 -107
- data/spec/presenters/hyrax/admin/dashboard_presenter_spec.rb +0 -33
- data/spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb +0 -25
- data/spec/presenters/hyrax/admin/repository_object_presenter_spec.rb +0 -24
- data/spec/presenters/hyrax/admin/user_activity_presenter_spec.rb +0 -20
- data/spec/presenters/hyrax/admin/users_presenter_spec.rb +0 -48
- data/spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb +0 -12
- data/spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb +0 -16
- data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +0 -73
- data/spec/presenters/hyrax/admin_set_presenter_spec.rb +0 -143
- data/spec/presenters/hyrax/admin_stats_presenter_spec.rb +0 -143
- data/spec/presenters/hyrax/collection_options_presenter_spec.rb +0 -15
- data/spec/presenters/hyrax/collection_presenter_spec.rb +0 -461
- data/spec/presenters/hyrax/dashboard/user_presenter_spec.rb +0 -65
- data/spec/presenters/hyrax/embargo_presenter_spec.rb +0 -51
- data/spec/presenters/hyrax/file_set_presenter_spec.rb +0 -426
- data/spec/presenters/hyrax/file_usage_spec.rb +0 -162
- data/spec/presenters/hyrax/fixity_status_presenter_spec.rb +0 -55
- data/spec/presenters/hyrax/homepage_presenter_spec.rb +0 -42
- data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +0 -59
- data/spec/presenters/hyrax/lease_presenter_spec.rb +0 -51
- data/spec/presenters/hyrax/member_presenter_factory_spec.rb +0 -26
- data/spec/presenters/hyrax/menu_presenter_spec.rb +0 -107
- data/spec/presenters/hyrax/permission_badge_spec.rb +0 -77
- data/spec/presenters/hyrax/presenter_factory_spec.rb +0 -53
- data/spec/presenters/hyrax/presenter_renderer_spec.rb +0 -30
- data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +0 -59
- data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +0 -10
- data/spec/presenters/hyrax/select_type_list_presenter_spec.rb +0 -37
- data/spec/presenters/hyrax/select_type_presenter_spec.rb +0 -74
- data/spec/presenters/hyrax/single_use_link_presenter_spec.rb +0 -41
- data/spec/presenters/hyrax/transfers_presenter_spec.rb +0 -44
- data/spec/presenters/hyrax/trophy_presenter_spec.rb +0 -53
- data/spec/presenters/hyrax/twitter_presenter_spec.rb +0 -27
- data/spec/presenters/hyrax/user_profile_presenter_spec.rb +0 -28
- data/spec/presenters/hyrax/version_list_presenter_spec.rb +0 -30
- data/spec/presenters/hyrax/version_presenter_spec.rb +0 -57
- data/spec/presenters/hyrax/work_show_presenter_spec.rb +0 -580
- data/spec/presenters/hyrax/work_usage_spec.rb +0 -144
- data/spec/presenters/hyrax/workflow_presenter_spec.rb +0 -75
- data/spec/rails_helper.rb +0 -2
- data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +0 -118
- data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +0 -39
- data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +0 -22
- data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +0 -35
- data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +0 -21
- data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +0 -21
- data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +0 -29
- data/spec/requests/legacy_routing_spec.rb +0 -7
- data/spec/requests/riiif_spec.rb +0 -32
- data/spec/routing/admin_routes_spec.rb +0 -29
- data/spec/routing/api_route_spec.rb +0 -89
- data/spec/routing/citations_route_spec.rb +0 -21
- data/spec/routing/collection_permission_templates_routes_spec.rb +0 -31
- data/spec/routing/collection_types_routes.rb +0 -35
- data/spec/routing/dashboard_routes_spec.rb +0 -37
- data/spec/routing/featured_works_route_spec.rb +0 -15
- data/spec/routing/operations_spec.rb +0 -9
- data/spec/routing/ownership_transfers_route_spec.rb +0 -43
- data/spec/routing/resource_sync_spec.rb +0 -19
- data/spec/routing/route_spec.rb +0 -205
- data/spec/routing/single_use_link_spec.rb +0 -27
- data/spec/routing/stats_route_spec.rb +0 -21
- data/spec/search_builders/hyrax/abstract_type_relation_spec.rb +0 -18
- data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +0 -39
- data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +0 -78
- data/spec/search_builders/hyrax/catalog_search_builder_spec.rb +0 -86
- data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +0 -53
- data/spec/search_builders/hyrax/collection_search_builder_spec.rb +0 -74
- data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +0 -103
- data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +0 -85
- data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +0 -44
- data/spec/search_builders/hyrax/embargo_search_builder_spec.rb +0 -17
- data/spec/search_builders/hyrax/file_set_search_builder_spec.rb +0 -28
- data/spec/search_builders/hyrax/lease_search_builder_spec.rb +0 -17
- data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +0 -35
- data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +0 -63
- data/spec/search_builders/hyrax/my/shares_search_builder_spec.rb +0 -32
- data/spec/search_builders/hyrax/my/works_search_builder_spec.rb +0 -52
- data/spec/search_builders/hyrax/parent_collection_search_builder_spec.rb +0 -15
- data/spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb +0 -20
- data/spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb +0 -32
- data/spec/search_builders/hyrax/work_relation_spec.rb +0 -9
- data/spec/search_builders/hyrax/work_search_builder_spec.rb +0 -106
- data/spec/search_builders/hyrax/works_search_builder_spec.rb +0 -23
- data/spec/services/hyrax/abstract_message_service_spec.rb +0 -25
- data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +0 -205
- data/spec/services/hyrax/admin_set_create_service_spec.rb +0 -114
- data/spec/services/hyrax/admin_set_member_service_spec.rb +0 -21
- data/spec/services/hyrax/admin_set_service_spec.rb +0 -171
- data/spec/services/hyrax/batch_create_failure_service_spec.rb +0 -18
- data/spec/services/hyrax/batch_create_success_service_spec.rb +0 -14
- data/spec/services/hyrax/change_content_depositor_service_spec.rb +0 -49
- data/spec/services/hyrax/collection_member_service_spec.rb +0 -19
- data/spec/services/hyrax/collection_size_service_spec.rb +0 -74
- data/spec/services/hyrax/collection_types/create_service_spec.rb +0 -127
- data/spec/services/hyrax/collection_types/permissions_service_spec.rb +0 -297
- data/spec/services/hyrax/collections/collection_member_service_spec.rb +0 -49
- data/spec/services/hyrax/collections/managed_collections_service_spec.rb +0 -17
- data/spec/services/hyrax/collections/migration_service_spec.rb +0 -467
- data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +0 -28
- data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +0 -353
- data/spec/services/hyrax/collections/permissions_create_service_spec.rb +0 -64
- data/spec/services/hyrax/collections/permissions_service_spec.rb +0 -380
- data/spec/services/hyrax/collections_service_spec.rb +0 -62
- data/spec/services/hyrax/curation_concern_spec.rb +0 -18
- data/spec/services/hyrax/database_migrator_spec.rb +0 -20
- data/spec/services/hyrax/default_middleware_stack_spec.rb +0 -36
- data/spec/services/hyrax/derivative_path_spec.rb +0 -65
- data/spec/services/hyrax/derivative_service_spec.rb +0 -49
- data/spec/services/hyrax/embargo_service_spec.rb +0 -59
- data/spec/services/hyrax/file_set_csv_service_spec.rb +0 -83
- data/spec/services/hyrax/file_set_derivatives_service_spec.rb +0 -13
- data/spec/services/hyrax/file_set_fixity_check_service_spec.rb +0 -129
- data/spec/services/hyrax/fixity_check_failure_service_spec.rb +0 -29
- data/spec/services/hyrax/graph_exporter_spec.rb +0 -58
- data/spec/services/hyrax/iiif_authorization_service_spec.rb +0 -43
- data/spec/services/hyrax/import_url_failure_service_spec.rb +0 -23
- data/spec/services/hyrax/lease_service_spec.rb +0 -50
- data/spec/services/hyrax/license_service_spec.rb +0 -34
- data/spec/services/hyrax/lock_manager_spec.rb +0 -13
- data/spec/services/hyrax/messenger_service_spec.rb +0 -15
- data/spec/services/hyrax/microdata_spec.rb +0 -94
- data/spec/services/hyrax/multiple_membership_checker_spec.rb +0 -155
- data/spec/services/hyrax/noid_spec.rb +0 -37
- data/spec/services/hyrax/permission_template_applicator_spec.rb +0 -69
- data/spec/services/hyrax/persist_derivatives_spec.rb +0 -22
- data/spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb +0 -20
- data/spec/services/hyrax/qa_select_service_spec.rb +0 -109
- data/spec/services/hyrax/quick_classification_query_spec.rb +0 -38
- data/spec/services/hyrax/repository_fixity_check_service_spec.rb +0 -16
- data/spec/services/hyrax/resource_types_service_spec.rb +0 -38
- data/spec/services/hyrax/rights_statement_service_spec.rb +0 -9
- data/spec/services/hyrax/statistics/collections/over_time_spec.rb +0 -17
- data/spec/services/hyrax/statistics/depositors/summary_spec.rb +0 -66
- data/spec/services/hyrax/statistics/file_sets/by_format_spec.rb +0 -29
- data/spec/services/hyrax/statistics/query_service_spec.rb +0 -112
- data/spec/services/hyrax/statistics/system_stats_spec.rb +0 -45
- data/spec/services/hyrax/statistics/users/over_time_spec.rb +0 -22
- data/spec/services/hyrax/statistics/works/by_depositor_spec.rb +0 -24
- data/spec/services/hyrax/statistics/works/by_resource_type_spec.rb +0 -28
- data/spec/services/hyrax/statistics/works/count_spec.rb +0 -33
- data/spec/services/hyrax/statistics/works/over_time_spec.rb +0 -17
- data/spec/services/hyrax/thumbnail_path_service_spec.rb +0 -55
- data/spec/services/hyrax/tolerant_select_service_spec.rb +0 -80
- data/spec/services/hyrax/user_stat_importer_spec.rb +0 -315
- data/spec/services/hyrax/versioning_service_spec.rb +0 -26
- data/spec/services/hyrax/work_query_service_spec.rb +0 -56
- data/spec/services/hyrax/workflow/action_taken_service_spec.rb +0 -74
- data/spec/services/hyrax/workflow/activate_object_spec.rb +0 -26
- data/spec/services/hyrax/workflow/changes_required_notification_spec.rb +0 -35
- data/spec/services/hyrax/workflow/deactivate_object_spec.rb +0 -26
- data/spec/services/hyrax/workflow/deposited_notification_spec.rb +0 -35
- data/spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb +0 -53
- data/spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb +0 -48
- data/spec/services/hyrax/workflow/method_generator_spec.rb +0 -42
- data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +0 -24
- data/spec/services/hyrax/workflow/notification_generator_spec.rb +0 -27
- data/spec/services/hyrax/workflow/notification_service_spec.rb +0 -87
- data/spec/services/hyrax/workflow/pending_review_notification_spec.rb +0 -34
- data/spec/services/hyrax/workflow/permission_generator_spec.rb +0 -50
- data/spec/services/hyrax/workflow/permission_query_spec.rb +0 -206
- data/spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb +0 -48
- data/spec/services/hyrax/workflow/sipity_actions_generator_spec.rb +0 -40
- data/spec/services/hyrax/workflow/state_machine_generator_spec.rb +0 -45
- data/spec/services/hyrax/workflow/status_list_service_spec.rb +0 -67
- data/spec/services/hyrax/workflow/workflow_factory_spec.rb +0 -26
- data/spec/services/hyrax/workflow/workflow_importer_spec.rb +0 -241
- data/spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb +0 -39
- data/spec/services/hyrax/workflow/workflow_schema_spec.rb +0 -86
- data/spec/services/hyrax/working_directory_spec.rb +0 -12
- data/spec/services/hyrax/works/managed_works_service_spec.rb +0 -17
- data/spec/spec_helper.rb +0 -300
- data/spec/strategies/hyrax/strategies/yaml_strategy_spec.rb +0 -30
- data/spec/support/controller_level_helpers.rb +0 -27
- data/spec/support/factory_helpers.rb +0 -24
- data/spec/support/fakes/fake_authority.rb +0 -13
- data/spec/support/features.rb +0 -10
- data/spec/support/features/batch_edit_actions.rb +0 -28
- data/spec/support/features/session_helpers.rb +0 -14
- data/spec/support/features/workflow.rb +0 -9
- data/spec/support/input_support.rb +0 -11
- data/spec/support/logging_formatter.rb +0 -66
- data/spec/support/matchers/api_responses.rb +0 -26
- data/spec/support/matchers/collection_type_property_matchers.rb +0 -29
- data/spec/support/matchers/response_matchers.rb +0 -7
- data/spec/support/optional_example.rb +0 -16
- data/spec/support/rake.rb +0 -41
- data/spec/support/selectors.rb +0 -100
- data/spec/support/spec_statistic.rb +0 -23
- data/spec/support/speedup.rb +0 -6
- data/spec/support/statistic_helper.rb +0 -9
- data/spec/tasks/rake_spec.rb +0 -27
- data/spec/test_app_templates/Gemfile.extra +0 -6
- data/spec/test_app_templates/disable_animations_in_test_environment.rb +0 -54
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +0 -125
- data/spec/views/_flash_msg.html.erb_spec.rb +0 -32
- data/spec/views/_user_util_links.html.erb_spec.rb +0 -44
- data/spec/views/catalog/_index_list_default.html.erb_spec.rb +0 -43
- data/spec/views/catalog/_search_form.html.erb_spec.rb +0 -16
- data/spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb +0 -43
- data/spec/views/catalog/index.html.erb_spec.rb +0 -50
- data/spec/views/content_blocks/edit.html.erb_spec.rb +0 -21
- data/spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb +0 -29
- data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +0 -128
- data/spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb +0 -19
- data/spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb +0 -24
- data/spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb +0 -22
- data/spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb +0 -68
- data/spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb +0 -13
- data/spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb +0 -28
- data/spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb +0 -40
- data/spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb +0 -29
- data/spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb +0 -21
- data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +0 -45
- data/spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb +0 -22
- data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +0 -27
- data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +0 -27
- data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +0 -24
- data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +0 -73
- data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +0 -86
- data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +0 -62
- data/spec/views/hyrax/admin/features/index.html.erb_spec.rb +0 -15
- data/spec/views/hyrax/admin/stats/show.html.erb_spec.rb +0 -54
- data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +0 -45
- data/spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb +0 -40
- data/spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb +0 -30
- data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +0 -35
- data/spec/views/hyrax/base/_citations.html.erb_spec.rb +0 -43
- data/spec/views/hyrax/base/_form.html.erb_spec.rb +0 -80
- data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +0 -68
- data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +0 -38
- data/spec/views/hyrax/base/_form_metadata.html.erb_spec.rb +0 -40
- data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +0 -131
- data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +0 -48
- data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +0 -22
- data/spec/views/hyrax/base/_items.html.erb_spec.rb +0 -55
- data/spec/views/hyrax/base/_member.html.erb_spec.rb +0 -43
- data/spec/views/hyrax/base/_relationships.html.erb_spec.rb +0 -92
- data/spec/views/hyrax/base/_show_actions.html.erb_spec.rb +0 -149
- data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +0 -16
- data/spec/views/hyrax/base/edit.html.erb_spec.rb +0 -26
- data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +0 -88
- data/spec/views/hyrax/base/show.html.erb_spec.rb +0 -201
- data/spec/views/hyrax/base/show.json.jbuilder_spec.rb +0 -23
- data/spec/views/hyrax/base/unauthorized.html.erb_spec.rb +0 -30
- data/spec/views/hyrax/base/unavailable.html.erb_spec.rb +0 -36
- data/spec/views/hyrax/batch_edits/check_all_spec.rb +0 -13
- data/spec/views/hyrax/batch_edits/edit.html.erb_spec.rb +0 -35
- data/spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb +0 -24
- data/spec/views/hyrax/citations/work.html.erb_spec.rb +0 -175
- data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +0 -32
- data/spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb +0 -24
- data/spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb +0 -35
- data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +0 -74
- data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +0 -60
- data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +0 -39
- data/spec/views/hyrax/collections/show.html.erb_spec.rb +0 -48
- data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +0 -132
- data/spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb +0 -43
- data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +0 -60
- data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +0 -23
- data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +0 -67
- data/spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb +0 -47
- data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +0 -22
- data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +0 -108
- data/spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb +0 -51
- data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +0 -77
- data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +0 -46
- data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +0 -32
- data/spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb +0 -24
- data/spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb +0 -31
- data/spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb +0 -35
- data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +0 -61
- data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +0 -82
- data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +0 -62
- data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +0 -60
- data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +0 -75
- data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +0 -18
- data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +0 -20
- data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +0 -116
- data/spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb +0 -36
- data/spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb +0 -67
- data/spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb +0 -36
- data/spec/views/hyrax/dashboard/show_user_spec.rb +0 -61
- data/spec/views/hyrax/depositors/index.html.erb_spec.rb +0 -13
- data/spec/views/hyrax/embargoes/index.html.erb_spec.rb +0 -14
- data/spec/views/hyrax/file_sets/_actions.html.erb_spec.rb +0 -36
- data/spec/views/hyrax/file_sets/_permission.html.erb_spec.rb +0 -14
- data/spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb +0 -44
- data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +0 -62
- data/spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb +0 -29
- data/spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb +0 -34
- data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +0 -16
- data/spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb +0 -29
- data/spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb +0 -29
- data/spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb +0 -29
- data/spec/views/hyrax/file_sets/show.html.erb_spec.rb +0 -47
- data/spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb +0 -27
- data/spec/views/hyrax/homepage/_announcement.html.erb_spec.rb +0 -27
- data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +0 -40
- data/spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb +0 -23
- data/spec/views/hyrax/homepage/index.html.erb_spec.rb +0 -129
- data/spec/views/hyrax/leases/index.html.erb_spec.rb +0 -14
- data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +0 -65
- data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +0 -34
- data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +0 -40
- data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +0 -109
- data/spec/views/hyrax/my/collections/index.html.erb_spec.rb +0 -34
- data/spec/views/hyrax/my/facet.html.erb_spec.rb +0 -34
- data/spec/views/hyrax/my/works/_list_works.html.erb_spec.rb +0 -30
- data/spec/views/hyrax/my/works/index.html.erb_spec.rb +0 -69
- data/spec/views/hyrax/permissions/confirm.html.erb_spec.rb +0 -15
- data/spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb +0 -17
- data/spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb +0 -6
- data/spec/views/hyrax/stats/file.html.erb_spec.rb +0 -48
- data/spec/views/hyrax/uploads/create.json.jbuilder_spec.rb +0 -17
- data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +0 -25
- data/spec/views/hyrax/users/index.html.erb_spec.rb +0 -25
- data/spec/views/hyrax/users/show.html.erb_spec.rb +0 -55
- data/spec/views/layouts/error.html.erb_spec.rb +0 -6
- data/spec/views/pages/edit.html.erb_spec.rb +0 -27
- data/spec/views/pages/show.html.erb_spec.rb +0 -17
- data/spec/views/records/edit_fields/_based_near.html.erb_spec.rb +0 -20
- data/spec/views/records/edit_fields/_description.html.erb_spec.rb +0 -67
- data/spec/views/records/edit_fields/_language.html.erb_spec.rb +0 -20
- data/spec/views/records/edit_fields/_subject.html.erb_spec.rb +0 -20
- data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +0 -51
data/lib/hyrax/version.rb
CHANGED
data/template.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hyrax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Coyne
|
@@ -14,7 +14,7 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
17
|
+
date: 2020-07-28 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: rails
|
@@ -34,22 +34,22 @@ dependencies:
|
|
34
34
|
name: active-fedora
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "~>"
|
38
|
-
- !ruby/object:Gem::Version
|
39
|
-
version: '11.5'
|
40
37
|
- - ">="
|
41
38
|
- !ruby/object:Gem::Version
|
42
39
|
version: 11.5.2
|
40
|
+
- - "<"
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '12.2'
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "~>"
|
48
|
-
- !ruby/object:Gem::Version
|
49
|
-
version: '11.5'
|
50
47
|
- - ">="
|
51
48
|
- !ruby/object:Gem::Version
|
52
49
|
version: 11.5.2
|
50
|
+
- - "<"
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '12.2'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: almond-rails
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -162,6 +162,20 @@ dependencies:
|
|
162
162
|
- - "~>"
|
163
163
|
- !ruby/object:Gem::Version
|
164
164
|
version: '1.5'
|
165
|
+
- !ruby/object:Gem::Dependency
|
166
|
+
name: draper
|
167
|
+
requirement: !ruby/object:Gem::Requirement
|
168
|
+
requirements:
|
169
|
+
- - "~>"
|
170
|
+
- !ruby/object:Gem::Version
|
171
|
+
version: '4.0'
|
172
|
+
type: :runtime
|
173
|
+
prerelease: false
|
174
|
+
version_requirements: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - "~>"
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '4.0'
|
165
179
|
- !ruby/object:Gem::Dependency
|
166
180
|
name: dry-equalizer
|
167
181
|
requirement: !ruby/object:Gem::Requirement
|
@@ -180,16 +194,22 @@ dependencies:
|
|
180
194
|
name: dry-struct
|
181
195
|
requirement: !ruby/object:Gem::Requirement
|
182
196
|
requirements:
|
183
|
-
- - "
|
197
|
+
- - ">="
|
184
198
|
- !ruby/object:Gem::Version
|
185
199
|
version: '0.1'
|
200
|
+
- - "<"
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '2.0'
|
186
203
|
type: :runtime
|
187
204
|
prerelease: false
|
188
205
|
version_requirements: !ruby/object:Gem::Requirement
|
189
206
|
requirements:
|
190
|
-
- - "
|
207
|
+
- - ">="
|
191
208
|
- !ruby/object:Gem::Version
|
192
209
|
version: '0.1'
|
210
|
+
- - "<"
|
211
|
+
- !ruby/object:Gem::Version
|
212
|
+
version: '2.0'
|
193
213
|
- !ruby/object:Gem::Dependency
|
194
214
|
name: dry-transaction
|
195
215
|
requirement: !ruby/object:Gem::Requirement
|
@@ -208,16 +228,22 @@ dependencies:
|
|
208
228
|
name: dry-validation
|
209
229
|
requirement: !ruby/object:Gem::Requirement
|
210
230
|
requirements:
|
211
|
-
- - "
|
231
|
+
- - ">="
|
212
232
|
- !ruby/object:Gem::Version
|
213
233
|
version: '0.9'
|
234
|
+
- - "<"
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '2.0'
|
214
237
|
type: :runtime
|
215
238
|
prerelease: false
|
216
239
|
version_requirements: !ruby/object:Gem::Requirement
|
217
240
|
requirements:
|
218
|
-
- - "
|
241
|
+
- - ">="
|
219
242
|
- !ruby/object:Gem::Version
|
220
243
|
version: '0.9'
|
244
|
+
- - "<"
|
245
|
+
- !ruby/object:Gem::Version
|
246
|
+
version: '2.0'
|
221
247
|
- !ruby/object:Gem::Dependency
|
222
248
|
name: flipflop
|
223
249
|
requirement: !ruby/object:Gem::Requirement
|
@@ -422,16 +448,16 @@ dependencies:
|
|
422
448
|
name: linkeddata
|
423
449
|
requirement: !ruby/object:Gem::Requirement
|
424
450
|
requirements:
|
425
|
-
- - "
|
451
|
+
- - "~>"
|
426
452
|
- !ruby/object:Gem::Version
|
427
|
-
version: '
|
453
|
+
version: '3.1'
|
428
454
|
type: :runtime
|
429
455
|
prerelease: false
|
430
456
|
version_requirements: !ruby/object:Gem::Requirement
|
431
457
|
requirements:
|
432
|
-
- - "
|
458
|
+
- - "~>"
|
433
459
|
- !ruby/object:Gem::Version
|
434
|
-
version: '
|
460
|
+
version: '3.1'
|
435
461
|
- !ruby/object:Gem::Dependency
|
436
462
|
name: mailboxer
|
437
463
|
requirement: !ruby/object:Gem::Requirement
|
@@ -592,6 +618,20 @@ dependencies:
|
|
592
618
|
- - ">="
|
593
619
|
- !ruby/object:Gem::Version
|
594
620
|
version: '0'
|
621
|
+
- !ruby/object:Gem::Dependency
|
622
|
+
name: rdf-vocab
|
623
|
+
requirement: !ruby/object:Gem::Requirement
|
624
|
+
requirements:
|
625
|
+
- - "<"
|
626
|
+
- !ruby/object:Gem::Version
|
627
|
+
version: 3.1.5
|
628
|
+
type: :runtime
|
629
|
+
prerelease: false
|
630
|
+
version_requirements: !ruby/object:Gem::Requirement
|
631
|
+
requirements:
|
632
|
+
- - "<"
|
633
|
+
- !ruby/object:Gem::Version
|
634
|
+
version: 3.1.5
|
595
635
|
- !ruby/object:Gem::Dependency
|
596
636
|
name: redis-namespace
|
597
637
|
requirement: !ruby/object:Gem::Requirement
|
@@ -682,6 +722,26 @@ dependencies:
|
|
682
722
|
- - ">="
|
683
723
|
- !ruby/object:Gem::Version
|
684
724
|
version: '0'
|
725
|
+
- !ruby/object:Gem::Dependency
|
726
|
+
name: solrizer
|
727
|
+
requirement: !ruby/object:Gem::Requirement
|
728
|
+
requirements:
|
729
|
+
- - ">="
|
730
|
+
- !ruby/object:Gem::Version
|
731
|
+
version: '3.4'
|
732
|
+
- - "<"
|
733
|
+
- !ruby/object:Gem::Version
|
734
|
+
version: '5'
|
735
|
+
type: :runtime
|
736
|
+
prerelease: false
|
737
|
+
version_requirements: !ruby/object:Gem::Requirement
|
738
|
+
requirements:
|
739
|
+
- - ">="
|
740
|
+
- !ruby/object:Gem::Version
|
741
|
+
version: '3.4'
|
742
|
+
- - "<"
|
743
|
+
- !ruby/object:Gem::Version
|
744
|
+
version: '5'
|
685
745
|
- !ruby/object:Gem::Dependency
|
686
746
|
name: tinymce-rails
|
687
747
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1104,6 +1164,7 @@ files:
|
|
1104
1164
|
- ".github/stale.yml"
|
1105
1165
|
- ".gitignore"
|
1106
1166
|
- ".hound.yml"
|
1167
|
+
- ".regen"
|
1107
1168
|
- ".rspec"
|
1108
1169
|
- ".rubocop.yml"
|
1109
1170
|
- ".rubocop_fixme.yml"
|
@@ -1413,6 +1474,7 @@ files:
|
|
1413
1474
|
- app/helpers/hyrax/title_helper.rb
|
1414
1475
|
- app/helpers/hyrax/trophy_helper.rb
|
1415
1476
|
- app/helpers/hyrax/url_helper.rb
|
1477
|
+
- app/helpers/hyrax/work_form_helper.rb
|
1416
1478
|
- app/indexers/concerns/hyrax/indexes_basic_metadata.rb
|
1417
1479
|
- app/indexers/concerns/hyrax/indexes_linked_metadata.rb
|
1418
1480
|
- app/indexers/hyrax/admin_set_indexer.rb
|
@@ -1450,6 +1512,7 @@ files:
|
|
1450
1512
|
- app/jobs/hyrax/grant_read_to_members_job.rb
|
1451
1513
|
- app/jobs/hyrax/revoke_edit_from_members_job.rb
|
1452
1514
|
- app/jobs/hyrax/revoke_edit_job.rb
|
1515
|
+
- app/jobs/iiif_manifest_cache_prewarm_job.rb
|
1453
1516
|
- app/jobs/import_export_job.rb
|
1454
1517
|
- app/jobs/import_url_job.rb
|
1455
1518
|
- app/jobs/ingest_job.rb
|
@@ -1494,6 +1557,7 @@ files:
|
|
1494
1557
|
- app/models/concerns/hyrax/solr_document/characterization.rb
|
1495
1558
|
- app/models/concerns/hyrax/solr_document/export.rb
|
1496
1559
|
- app/models/concerns/hyrax/solr_document/metadata.rb
|
1560
|
+
- app/models/concerns/hyrax/solr_document/ordered_members.rb
|
1497
1561
|
- app/models/concerns/hyrax/solr_document_behavior.rb
|
1498
1562
|
- app/models/concerns/hyrax/suppressible.rb
|
1499
1563
|
- app/models/concerns/hyrax/user.rb
|
@@ -1572,6 +1636,7 @@ files:
|
|
1572
1636
|
- app/presenters/hyrax/file_usage.rb
|
1573
1637
|
- app/presenters/hyrax/fixity_status_presenter.rb
|
1574
1638
|
- app/presenters/hyrax/homepage_presenter.rb
|
1639
|
+
- app/presenters/hyrax/iiif_manifest_presenter.rb
|
1575
1640
|
- app/presenters/hyrax/inspect_work_presenter.rb
|
1576
1641
|
- app/presenters/hyrax/lease_presenter.rb
|
1577
1642
|
- app/presenters/hyrax/member_presenter_factory.rb
|
@@ -1658,6 +1723,7 @@ files:
|
|
1658
1723
|
- app/services/hyrax/analytics.rb
|
1659
1724
|
- app/services/hyrax/batch_create_failure_service.rb
|
1660
1725
|
- app/services/hyrax/batch_create_success_service.rb
|
1726
|
+
- app/services/hyrax/caching_iiif_manifest_builder.rb
|
1661
1727
|
- app/services/hyrax/change_content_depositor_service.rb
|
1662
1728
|
- app/services/hyrax/collection_member_service.rb
|
1663
1729
|
- app/services/hyrax/collection_size_service.rb
|
@@ -1686,6 +1752,9 @@ files:
|
|
1686
1752
|
- app/services/hyrax/fixity_check_failure_service.rb
|
1687
1753
|
- app/services/hyrax/form_metadata_service.rb
|
1688
1754
|
- app/services/hyrax/graph_exporter.rb
|
1755
|
+
- app/services/hyrax/identifier/builder.rb
|
1756
|
+
- app/services/hyrax/identifier/dispatcher.rb
|
1757
|
+
- app/services/hyrax/identifier/registrar.rb
|
1689
1758
|
- app/services/hyrax/iiif_authorization_service.rb
|
1690
1759
|
- app/services/hyrax/import_url_failure_service.rb
|
1691
1760
|
- app/services/hyrax/indexes_thumbnails.rb
|
@@ -1696,6 +1765,7 @@ files:
|
|
1696
1765
|
- app/services/hyrax/local_file_service.rb
|
1697
1766
|
- app/services/hyrax/lock_manager.rb
|
1698
1767
|
- app/services/hyrax/lockable.rb
|
1768
|
+
- app/services/hyrax/manifest_builder_service.rb
|
1699
1769
|
- app/services/hyrax/messenger_service.rb
|
1700
1770
|
- app/services/hyrax/microdata.rb
|
1701
1771
|
- app/services/hyrax/multiple_membership_checker.rb
|
@@ -2324,6 +2394,7 @@ files:
|
|
2324
2394
|
- lib/hyrax/search_state.rb
|
2325
2395
|
- lib/hyrax/specs/shared_specs.rb
|
2326
2396
|
- lib/hyrax/specs/shared_specs/derivative_service.rb
|
2397
|
+
- lib/hyrax/specs/shared_specs/identifiers.rb
|
2327
2398
|
- lib/hyrax/specs/shared_specs/workflow_method.rb
|
2328
2399
|
- lib/hyrax/transactions.rb
|
2329
2400
|
- lib/hyrax/transactions/container.rb
|
@@ -2348,705 +2419,6 @@ files:
|
|
2348
2419
|
- lib/tasks/reindex.rake
|
2349
2420
|
- lib/tasks/stats_tasks.rake
|
2350
2421
|
- lib/tasks/workflow.rake
|
2351
|
-
- spec/.gitignore
|
2352
|
-
- spec/abilities/ability_spec.rb
|
2353
|
-
- spec/abilities/admin_ability_spec.rb
|
2354
|
-
- spec/abilities/admin_set_ability_spec.rb
|
2355
|
-
- spec/abilities/collection_ability_spec.rb
|
2356
|
-
- spec/abilities/collection_type_ability_spec.rb
|
2357
|
-
- spec/abilities/embargo_and_lease_ability_spec.rb
|
2358
|
-
- spec/abilities/file_set_abilities_spec.rb
|
2359
|
-
- spec/abilities/generic_work_abilities_spec.rb
|
2360
|
-
- spec/abilities/operation_ability_spec.rb
|
2361
|
-
- spec/abilities/permission_template_ability_spec.rb
|
2362
|
-
- spec/abilities/proxies_and_transfer_abilities_spec.rb
|
2363
|
-
- spec/abilities/solr_document_ability_spec.rb
|
2364
|
-
- spec/actors/hyrax/actors/apply_order_actor_spec.rb
|
2365
|
-
- spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
|
2366
|
-
- spec/actors/hyrax/actors/attach_members_actor_spec.rb
|
2367
|
-
- spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
|
2368
|
-
- spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
|
2369
|
-
- spec/actors/hyrax/actors/collections_membership_actor_spec.rb
|
2370
|
-
- spec/actors/hyrax/actors/create_with_files_actor_spec.rb
|
2371
|
-
- spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb
|
2372
|
-
- spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
|
2373
|
-
- spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb
|
2374
|
-
- spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
|
2375
|
-
- spec/actors/hyrax/actors/embargo_actor_spec.rb
|
2376
|
-
- spec/actors/hyrax/actors/featured_work_actor_spec.rb
|
2377
|
-
- spec/actors/hyrax/actors/file_actor_spec.rb
|
2378
|
-
- spec/actors/hyrax/actors/file_set_actor_spec.rb
|
2379
|
-
- spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb
|
2380
|
-
- spec/actors/hyrax/actors/generic_work_actor_spec.rb
|
2381
|
-
- spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
|
2382
|
-
- spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
|
2383
|
-
- spec/actors/hyrax/actors/lease_actor_spec.rb
|
2384
|
-
- spec/actors/hyrax/actors/model_actor_spec.rb
|
2385
|
-
- spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
|
2386
|
-
- spec/actors/hyrax/actors/ordered_members_actor_spec.rb
|
2387
|
-
- spec/actors/hyrax/actors/transactional_request_spec.rb
|
2388
|
-
- spec/actors/hyrax/actors/transfer_request_actor_spec.rb
|
2389
|
-
- spec/authorities/qa/authorities/collections_spec.rb
|
2390
|
-
- spec/authorities/qa/authorities/find_works_spec.rb
|
2391
|
-
- spec/channels/hyrax/application_cable/channel_spec.rb
|
2392
|
-
- spec/channels/hyrax/application_cable/connection_spec.rb
|
2393
|
-
- spec/channels/hyrax/notifications_channel_spec.rb
|
2394
|
-
- spec/config/hyrax_events_spec.rb
|
2395
|
-
- spec/controllers/catalog_controller_spec.rb
|
2396
|
-
- spec/controllers/hyrax/accepts_batches_controller_spec.rb
|
2397
|
-
- spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
|
2398
|
-
- spec/controllers/hyrax/admin/appearances_controller_spec.rb
|
2399
|
-
- spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb
|
2400
|
-
- spec/controllers/hyrax/admin/collection_types_controller_spec.rb
|
2401
|
-
- spec/controllers/hyrax/admin/features_controller_spec.rb
|
2402
|
-
- spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
|
2403
|
-
- spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
|
2404
|
-
- spec/controllers/hyrax/admin/stats_controller_spec.rb
|
2405
|
-
- spec/controllers/hyrax/admin/strategies_controller_spec.rb
|
2406
|
-
- spec/controllers/hyrax/admin/users_controller_spec.rb
|
2407
|
-
- spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
|
2408
|
-
- spec/controllers/hyrax/admin/workflows_controller_spec.rb
|
2409
|
-
- spec/controllers/hyrax/api/items_controller_spec.rb
|
2410
|
-
- spec/controllers/hyrax/api/zotero_controller_spec.rb
|
2411
|
-
- spec/controllers/hyrax/batch_edits_controller_spec.rb
|
2412
|
-
- spec/controllers/hyrax/batch_uploads_controller_spec.rb
|
2413
|
-
- spec/controllers/hyrax/citations_controller_spec.rb
|
2414
|
-
- spec/controllers/hyrax/collections_controller_spec.rb
|
2415
|
-
- spec/controllers/hyrax/contact_form_controller_spec.rb
|
2416
|
-
- spec/controllers/hyrax/content_blocks_controller_spec.rb
|
2417
|
-
- spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb
|
2418
|
-
- spec/controllers/hyrax/dashboard/collections_controller_spec.rb
|
2419
|
-
- spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb
|
2420
|
-
- spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
|
2421
|
-
- spec/controllers/hyrax/dashboard/works_controller_spec.rb
|
2422
|
-
- spec/controllers/hyrax/dashboard_controller_spec.rb
|
2423
|
-
- spec/controllers/hyrax/depositors_controller_spec.rb
|
2424
|
-
- spec/controllers/hyrax/downloads_controller_spec.rb
|
2425
|
-
- spec/controllers/hyrax/embargoes_controller_spec.rb
|
2426
|
-
- spec/controllers/hyrax/featured_work_lists_controller_spec.rb
|
2427
|
-
- spec/controllers/hyrax/featured_works_controller_spec.rb
|
2428
|
-
- spec/controllers/hyrax/file_sets_controller_spec.rb
|
2429
|
-
- spec/controllers/hyrax/fixity_checks_controller_spec.rb
|
2430
|
-
- spec/controllers/hyrax/generic_works_controller_json_spec.rb
|
2431
|
-
- spec/controllers/hyrax/generic_works_controller_spec.rb
|
2432
|
-
- spec/controllers/hyrax/homepage_controller_spec.rb
|
2433
|
-
- spec/controllers/hyrax/leases_controller_spec.rb
|
2434
|
-
- spec/controllers/hyrax/my/collections_controller_spec.rb
|
2435
|
-
- spec/controllers/hyrax/my/highlights_controller_spec.rb
|
2436
|
-
- spec/controllers/hyrax/my/shares_controller_spec.rb
|
2437
|
-
- spec/controllers/hyrax/my/works_controller_spec.rb
|
2438
|
-
- spec/controllers/hyrax/notifications_controller_spec.rb
|
2439
|
-
- spec/controllers/hyrax/operations_controller_spec.rb
|
2440
|
-
- spec/controllers/hyrax/pages_controller_spec.rb
|
2441
|
-
- spec/controllers/hyrax/permissions_controller_spec.rb
|
2442
|
-
- spec/controllers/hyrax/resource_sync_controller_spec.rb
|
2443
|
-
- spec/controllers/hyrax/single_use_links_controller_spec.rb
|
2444
|
-
- spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
|
2445
|
-
- spec/controllers/hyrax/static_controller_spec.rb
|
2446
|
-
- spec/controllers/hyrax/stats_controller_spec.rb
|
2447
|
-
- spec/controllers/hyrax/transfers_controller_spec.rb
|
2448
|
-
- spec/controllers/hyrax/trophies_controller_spec.rb
|
2449
|
-
- spec/controllers/hyrax/uploads_controller_spec.rb
|
2450
|
-
- spec/controllers/hyrax/users_controller_spec.rb
|
2451
|
-
- spec/controllers/hyrax/workflow_actions_controller_spec.rb
|
2452
|
-
- spec/conversions/power_converters/polymorphic_type_spec.rb
|
2453
|
-
- spec/conversions/power_converters/sipity_action_name_spec.rb
|
2454
|
-
- spec/conversions/power_converters/sipity_action_spec.rb
|
2455
|
-
- spec/conversions/power_converters/sipity_agent_spec.rb
|
2456
|
-
- spec/conversions/power_converters/sipity_entity_spec.rb
|
2457
|
-
- spec/conversions/power_converters/sipity_role_spec.rb
|
2458
|
-
- spec/conversions/power_converters/sipity_workflow_id_spec.rb
|
2459
|
-
- spec/conversions/power_converters/sipity_workflow_state_spec.rb
|
2460
|
-
- spec/factories/admin_sets.rb
|
2461
|
-
- spec/factories/admin_sets_lw.rb
|
2462
|
-
- spec/factories/api_items.rb
|
2463
|
-
- spec/factories/collection_branding_infos.rb
|
2464
|
-
- spec/factories/collection_type_participants.rb
|
2465
|
-
- spec/factories/collection_types.rb
|
2466
|
-
- spec/factories/collections.rb
|
2467
|
-
- spec/factories/collections_factory.rb
|
2468
|
-
- spec/factories/content_blocks.rb
|
2469
|
-
- spec/factories/featured_works.rb
|
2470
|
-
- spec/factories/file_sets.rb
|
2471
|
-
- spec/factories/generic_works.rb
|
2472
|
-
- spec/factories/object_id.rb
|
2473
|
-
- spec/factories/operations.rb
|
2474
|
-
- spec/factories/permission_template_accesses.rb
|
2475
|
-
- spec/factories/permission_templates.rb
|
2476
|
-
- spec/factories/proxy_deposit_requests.rb
|
2477
|
-
- spec/factories/single_use_links.rb
|
2478
|
-
- spec/factories/sipity_entities.rb
|
2479
|
-
- spec/factories/uploaded_files.rb
|
2480
|
-
- spec/factories/users.rb
|
2481
|
-
- spec/factories/workflow_actions.rb
|
2482
|
-
- spec/factories/workflow_states.rb
|
2483
|
-
- spec/factories/workflows.rb
|
2484
|
-
- spec/factory_tests/adminsets_factory_spec.rb
|
2485
|
-
- spec/factory_tests/collections_factory_spec.rb
|
2486
|
-
- spec/features/actor_stack_spec.rb
|
2487
|
-
- spec/features/admin_spec.rb
|
2488
|
-
- spec/features/batch_create_spec.rb
|
2489
|
-
- spec/features/batch_edit_spec.rb
|
2490
|
-
- spec/features/browse_catalog_spec.rb
|
2491
|
-
- spec/features/browse_dashboard_works_spec.rb
|
2492
|
-
- spec/features/catalog_search_spec.rb
|
2493
|
-
- spec/features/collection_multi_membership_spec.rb
|
2494
|
-
- spec/features/collection_spec.rb
|
2495
|
-
- spec/features/collection_type_spec.rb
|
2496
|
-
- spec/features/contact_form_spec.rb
|
2497
|
-
- spec/features/create_child_work_spec.rb
|
2498
|
-
- spec/features/create_work_admin_spec.rb
|
2499
|
-
- spec/features/create_work_spec.rb
|
2500
|
-
- spec/features/dashboard/all_works.rb
|
2501
|
-
- spec/features/dashboard/collection_spec.rb
|
2502
|
-
- spec/features/dashboard/display_admin_dashboard_spec.rb
|
2503
|
-
- spec/features/dashboard/display_dashboard_spec.rb
|
2504
|
-
- spec/features/delete_work_spec.rb
|
2505
|
-
- spec/features/edit_content_block_admin_spec.rb
|
2506
|
-
- spec/features/edit_file_spec.rb
|
2507
|
-
- spec/features/edit_work_spec.rb
|
2508
|
-
- spec/features/embargo_spec.rb
|
2509
|
-
- spec/features/homepage_spec.rb
|
2510
|
-
- spec/features/lease_spec.rb
|
2511
|
-
- spec/features/notifications_spec.rb
|
2512
|
-
- spec/features/ownership_transfer_spec.rb
|
2513
|
-
- spec/features/proxy_spec.rb
|
2514
|
-
- spec/features/search_spec.rb
|
2515
|
-
- spec/features/static_pages_spec.rb
|
2516
|
-
- spec/features/users_spec.rb
|
2517
|
-
- spec/features/work_generator_spec.rb
|
2518
|
-
- spec/features/work_show_spec.rb
|
2519
|
-
- spec/features/workflow_roles_spec.rb
|
2520
|
-
- spec/features/workflow_state_changes_spec.rb
|
2521
|
-
- spec/fixtures/1.5mb-avatar.jpg
|
2522
|
-
- spec/fixtures/4-20.png
|
2523
|
-
- spec/fixtures/Example.ogg
|
2524
|
-
- spec/fixtures/authorities/licenses.yml
|
2525
|
-
- spec/fixtures/charter.docx
|
2526
|
-
- spec/fixtures/config/schema_org.yml
|
2527
|
-
- spec/fixtures/config/schema_org_second.yml
|
2528
|
-
- spec/fixtures/countdown.avi
|
2529
|
-
- spec/fixtures/docx_fits.xml
|
2530
|
-
- spec/fixtures/dublin_core_rdf_descMetadata.nt
|
2531
|
-
- spec/fixtures/hyrax/.gitignore
|
2532
|
-
- spec/fixtures/hyrax/hyrax_test4.pdf
|
2533
|
-
- spec/fixtures/hyrax/hyrax_test5.mp3
|
2534
|
-
- spec/fixtures/hyrax_generic_stub.txt
|
2535
|
-
- spec/fixtures/icons.zip
|
2536
|
-
- spec/fixtures/image.jp2
|
2537
|
-
- spec/fixtures/image.jpg
|
2538
|
-
- spec/fixtures/image.png
|
2539
|
-
- spec/fixtures/jp2_fits.xml
|
2540
|
-
- spec/fixtures/jpg_fits.xml
|
2541
|
-
- spec/fixtures/mp3_fits.xml
|
2542
|
-
- spec/fixtures/pdf_fits.xml
|
2543
|
-
- spec/fixtures/piano_note.wav
|
2544
|
-
- spec/fixtures/png_fits.xml
|
2545
|
-
- spec/fixtures/sample_mpeg4.mp4
|
2546
|
-
- spec/fixtures/small_file.txt
|
2547
|
-
- spec/fixtures/spoken-text.m4a
|
2548
|
-
- spec/fixtures/txt_fits.xml
|
2549
|
-
- spec/fixtures/world.png
|
2550
|
-
- spec/fixtures/xls_fits.xml
|
2551
|
-
- spec/fixtures/xml_fits.xml
|
2552
|
-
- spec/forms/hyrax/forms/admin/appearance_spec.rb
|
2553
|
-
- spec/forms/hyrax/forms/admin/collection_type_form_spec.rb
|
2554
|
-
- spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb
|
2555
|
-
- spec/forms/hyrax/forms/admin_set_form_spec.rb
|
2556
|
-
- spec/forms/hyrax/forms/batch_edit_form_spec.rb
|
2557
|
-
- spec/forms/hyrax/forms/batch_upload_form_spec.rb
|
2558
|
-
- spec/forms/hyrax/forms/collection_form_spec.rb
|
2559
|
-
- spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb
|
2560
|
-
- spec/forms/hyrax/forms/file_manager_form_spec.rb
|
2561
|
-
- spec/forms/hyrax/forms/file_set_edit_form_spec.rb
|
2562
|
-
- spec/forms/hyrax/forms/permission_template_form_spec.rb
|
2563
|
-
- spec/forms/hyrax/forms/work_form_spec.rb
|
2564
|
-
- spec/forms/hyrax/forms/workflow_action_form_spec.rb
|
2565
|
-
- spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
|
2566
|
-
- spec/forms/hyrax/generic_work_form_spec.rb
|
2567
|
-
- spec/helpers/blacklight_helper_spec.rb
|
2568
|
-
- spec/helpers/hyrax/ability_helper_spec.rb
|
2569
|
-
- spec/helpers/hyrax/batch_edits_helper_spec.rb
|
2570
|
-
- spec/helpers/hyrax/charts_helper_spec.rb
|
2571
|
-
- spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
|
2572
|
-
- spec/helpers/hyrax/collections_helper_spec.rb
|
2573
|
-
- spec/helpers/hyrax/content_block_helper_spec.rb
|
2574
|
-
- spec/helpers/hyrax/dashboard_helper_behavior_spec.rb
|
2575
|
-
- spec/helpers/hyrax/file_set_helper_spec.rb
|
2576
|
-
- spec/helpers/hyrax/iiif_helper_spec.rb
|
2577
|
-
- spec/helpers/hyrax/trophy_helper_spec.rb
|
2578
|
-
- spec/helpers/hyrax_helper_spec.rb
|
2579
|
-
- spec/hyrax/transactions/create_work_spec.rb
|
2580
|
-
- spec/hyrax/transactions/steps/apply_permission_template_spec.rb
|
2581
|
-
- spec/hyrax/transactions/steps/ensure_admin_set_spec.rb
|
2582
|
-
- spec/hyrax/transactions/steps/ensure_permission_template_spec.rb
|
2583
|
-
- spec/hyrax/transactions/steps/save_work_spec.rb
|
2584
|
-
- spec/hyrax/transactions/steps/set_default_admin_set_spec.rb
|
2585
|
-
- spec/hyrax/transactions/steps/set_modified_date_spec.rb
|
2586
|
-
- spec/hyrax/transactions/steps/set_uploaded_date_spec.rb
|
2587
|
-
- spec/indexers/hyrax/collection_indexer_spec.rb
|
2588
|
-
- spec/indexers/hyrax/file_set_indexer_spec.rb
|
2589
|
-
- spec/indexers/hyrax/generic_work_indexer_spec.rb
|
2590
|
-
- spec/indexers/hyrax/repository_reindexer_spec.rb
|
2591
|
-
- spec/inputs/controlled_vocabulary_input_spec.rb
|
2592
|
-
- spec/inputs/multifile_input_spec.rb
|
2593
|
-
- spec/javascripts/authority_select_spec.js
|
2594
|
-
- spec/javascripts/autocomplete_spec.js.coffee
|
2595
|
-
- spec/javascripts/batch_select_spec.js
|
2596
|
-
- spec/javascripts/charts_spec.coffee
|
2597
|
-
- spec/javascripts/checklist_item_spec.js
|
2598
|
-
- spec/javascripts/deposit_agreement_spec.js
|
2599
|
-
- spec/javascripts/file_manager_member_spec.coffee
|
2600
|
-
- spec/javascripts/file_manager_sorting_spec.coffee
|
2601
|
-
- spec/javascripts/fixtures/chart_example.html
|
2602
|
-
- spec/javascripts/fixtures/dashboard_batch_forms.html
|
2603
|
-
- spec/javascripts/fixtures/file_manager_member.html
|
2604
|
-
- spec/javascripts/fixtures/save_button.html
|
2605
|
-
- spec/javascripts/fixtures/sortable.html
|
2606
|
-
- spec/javascripts/fixtures/sul_table.html
|
2607
|
-
- spec/javascripts/grant_spec.js
|
2608
|
-
- spec/javascripts/helpers/jasmine-ajax.js
|
2609
|
-
- spec/javascripts/helpers/jasmine-jquery.js
|
2610
|
-
- spec/javascripts/helpers/test_fixtures.js.coffee
|
2611
|
-
- spec/javascripts/helpers/test_responses.js
|
2612
|
-
- spec/javascripts/jasmine_spec.rb
|
2613
|
-
- spec/javascripts/relationships_control_spec.js.coffee
|
2614
|
-
- spec/javascripts/required_field_spec.js
|
2615
|
-
- spec/javascripts/save_manager_spec.coffee
|
2616
|
-
- spec/javascripts/save_work_spec.js
|
2617
|
-
- spec/javascripts/settings_spec.js
|
2618
|
-
- spec/javascripts/single_use_links_spec.coffee
|
2619
|
-
- spec/javascripts/support/jasmine.yml
|
2620
|
-
- spec/javascripts/support/jasmine_helper.rb
|
2621
|
-
- spec/javascripts/tabs_spec.js.coffee
|
2622
|
-
- spec/javascripts/uploaded_files_spec.js
|
2623
|
-
- spec/javascripts/visibility_component_spec.js
|
2624
|
-
- spec/jobs/attach_files_to_work_job_spec.rb
|
2625
|
-
- spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb
|
2626
|
-
- spec/jobs/batch_create_job_spec.rb
|
2627
|
-
- spec/jobs/characterize_job_spec.rb
|
2628
|
-
- spec/jobs/content_delete_event_job_spec.rb
|
2629
|
-
- spec/jobs/content_deposit_event_job_spec.rb
|
2630
|
-
- spec/jobs/content_depositor_change_event_job_spec.rb
|
2631
|
-
- spec/jobs/content_new_version_event_job_spec.rb
|
2632
|
-
- spec/jobs/content_restored_version_event_job_spec.rb
|
2633
|
-
- spec/jobs/content_update_event_job_spec.rb
|
2634
|
-
- spec/jobs/create_derivatives_job_spec.rb
|
2635
|
-
- spec/jobs/create_work_job_spec.rb
|
2636
|
-
- spec/jobs/file_set_attached_event_job_spec.rb
|
2637
|
-
- spec/jobs/fixity_check_job_spec.rb
|
2638
|
-
- spec/jobs/hyrax/grant_edit_job_spec.rb
|
2639
|
-
- spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
|
2640
|
-
- spec/jobs/hyrax/grant_read_job_spec.rb
|
2641
|
-
- spec/jobs/hyrax/grant_read_to_members_job_spec.rb
|
2642
|
-
- spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
|
2643
|
-
- spec/jobs/hyrax/revoke_edit_job_spec.rb
|
2644
|
-
- spec/jobs/import_export_job_spec.rb
|
2645
|
-
- spec/jobs/import_url_job_spec.rb
|
2646
|
-
- spec/jobs/ingest_local_file_job_spec.rb
|
2647
|
-
- spec/jobs/inherit_permissions_job_spec.rb
|
2648
|
-
- spec/jobs/stream_notifications_job_spec.rb
|
2649
|
-
- spec/jobs/user_edit_profile_event_job_spec.rb
|
2650
|
-
- spec/jobs/visibility_copy_job_spec.rb
|
2651
|
-
- spec/lib/hyrax/analytics_spec.rb
|
2652
|
-
- spec/lib/hyrax/arkivo/actor_spec.rb
|
2653
|
-
- spec/lib/hyrax/arkivo/create_subscription_job_spec.rb
|
2654
|
-
- spec/lib/hyrax/arkivo/metadata_munger_spec.rb
|
2655
|
-
- spec/lib/hyrax/arkivo/schema_validator_spec.rb
|
2656
|
-
- spec/lib/hyrax/arkivo_spec.rb
|
2657
|
-
- spec/lib/hyrax/collections/search_service_spec.rb
|
2658
|
-
- spec/lib/hyrax/configuration_spec.rb
|
2659
|
-
- spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
|
2660
|
-
- spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
|
2661
|
-
- spec/lib/hyrax/move_all_works_to_admin_set_spec.rb
|
2662
|
-
- spec/lib/hyrax/name_spec.rb
|
2663
|
-
- spec/lib/hyrax/redis_event_store_spec.rb
|
2664
|
-
- spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb
|
2665
|
-
- spec/lib/hyrax/resource_sync/change_list_writer_spec.rb
|
2666
|
-
- spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb
|
2667
|
-
- spec/lib/hyrax/resource_sync/source_description_writer_spec.rb
|
2668
|
-
- spec/lib/hyrax/role_registry_spec.rb
|
2669
|
-
- spec/lib/hyrax/search_state_spec.rb
|
2670
|
-
- spec/lib/hyrax/zotero/config_spec.rb
|
2671
|
-
- spec/lib/hyrax/zotero_spec.rb
|
2672
|
-
- spec/lib/hyrax_spec.rb
|
2673
|
-
- spec/models/admin_set_spec.rb
|
2674
|
-
- spec/models/batch_upload_item_spec.rb
|
2675
|
-
- spec/models/checksum_audit_log_spec.rb
|
2676
|
-
- spec/models/collection_branding_info_spec.rb
|
2677
|
-
- spec/models/collection_spec.rb
|
2678
|
-
- spec/models/concerns/hyrax/collection_nesting_spec.rb
|
2679
|
-
- spec/models/content_block_spec.rb
|
2680
|
-
- spec/models/featured_work_list_spec.rb
|
2681
|
-
- spec/models/featured_work_spec.rb
|
2682
|
-
- spec/models/file_download_stat_spec.rb
|
2683
|
-
- spec/models/file_set_spec.rb
|
2684
|
-
- spec/models/file_view_stat_spec.rb
|
2685
|
-
- spec/models/flipflop_spec.rb
|
2686
|
-
- spec/models/generic_work_spec.rb
|
2687
|
-
- spec/models/hyrax/batch_create_operation_spec.rb
|
2688
|
-
- spec/models/hyrax/collection_type_participant_spec.rb
|
2689
|
-
- spec/models/hyrax/collection_type_spec.rb
|
2690
|
-
- spec/models/hyrax/download_spec.rb
|
2691
|
-
- spec/models/hyrax/operation_spec.rb
|
2692
|
-
- spec/models/hyrax/pageview_spec.rb
|
2693
|
-
- spec/models/hyrax/permission_template_access_spec.rb
|
2694
|
-
- spec/models/hyrax/permission_template_spec.rb
|
2695
|
-
- spec/models/hyrax/permissions/readable_permissions_spec.rb
|
2696
|
-
- spec/models/hyrax/permissions/writable_permissions_spec.rb
|
2697
|
-
- spec/models/hyrax/uploaded_file_spec.rb
|
2698
|
-
- spec/models/hyrax/user_usage_stats_spec.rb
|
2699
|
-
- spec/models/hyrax/work_behavior_spec.rb
|
2700
|
-
- spec/models/job_io_wrapper_spec.rb
|
2701
|
-
- spec/models/proxy_deposit_request_spec.rb
|
2702
|
-
- spec/models/single_use_link_spec.rb
|
2703
|
-
- spec/models/sipity/agent_spec.rb
|
2704
|
-
- spec/models/sipity/comment_spec.rb
|
2705
|
-
- spec/models/sipity/entity_spec.rb
|
2706
|
-
- spec/models/sipity/entity_specific_responsibility_spec.rb
|
2707
|
-
- spec/models/sipity/notifiable_context_spec.rb
|
2708
|
-
- spec/models/sipity/notification_recipient_spec.rb
|
2709
|
-
- spec/models/sipity/notification_spec.rb
|
2710
|
-
- spec/models/sipity/role_spec.rb
|
2711
|
-
- spec/models/sipity/workflow_action_spec.rb
|
2712
|
-
- spec/models/sipity/workflow_responsibility_spec.rb
|
2713
|
-
- spec/models/sipity/workflow_role_spec.rb
|
2714
|
-
- spec/models/sipity/workflow_spec.rb
|
2715
|
-
- spec/models/sipity/workflow_state_action_permission_spec.rb
|
2716
|
-
- spec/models/sipity/workflow_state_action_spec.rb
|
2717
|
-
- spec/models/sipity/workflow_state_spec.rb
|
2718
|
-
- spec/models/solr_document_spec.rb
|
2719
|
-
- spec/models/trophy_spec.rb
|
2720
|
-
- spec/models/user_mailbox_spec.rb
|
2721
|
-
- spec/models/user_spec.rb
|
2722
|
-
- spec/models/work_view_stat_spec.rb
|
2723
|
-
- spec/presenters/hyrax/admin/dashboard_presenter_spec.rb
|
2724
|
-
- spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb
|
2725
|
-
- spec/presenters/hyrax/admin/repository_object_presenter_spec.rb
|
2726
|
-
- spec/presenters/hyrax/admin/user_activity_presenter_spec.rb
|
2727
|
-
- spec/presenters/hyrax/admin/users_presenter_spec.rb
|
2728
|
-
- spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb
|
2729
|
-
- spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb
|
2730
|
-
- spec/presenters/hyrax/admin_set_options_presenter_spec.rb
|
2731
|
-
- spec/presenters/hyrax/admin_set_presenter_spec.rb
|
2732
|
-
- spec/presenters/hyrax/admin_stats_presenter_spec.rb
|
2733
|
-
- spec/presenters/hyrax/collection_options_presenter_spec.rb
|
2734
|
-
- spec/presenters/hyrax/collection_presenter_spec.rb
|
2735
|
-
- spec/presenters/hyrax/dashboard/user_presenter_spec.rb
|
2736
|
-
- spec/presenters/hyrax/embargo_presenter_spec.rb
|
2737
|
-
- spec/presenters/hyrax/file_set_presenter_spec.rb
|
2738
|
-
- spec/presenters/hyrax/file_usage_spec.rb
|
2739
|
-
- spec/presenters/hyrax/fixity_status_presenter_spec.rb
|
2740
|
-
- spec/presenters/hyrax/homepage_presenter_spec.rb
|
2741
|
-
- spec/presenters/hyrax/inspect_work_presenter_spec.rb
|
2742
|
-
- spec/presenters/hyrax/lease_presenter_spec.rb
|
2743
|
-
- spec/presenters/hyrax/member_presenter_factory_spec.rb
|
2744
|
-
- spec/presenters/hyrax/menu_presenter_spec.rb
|
2745
|
-
- spec/presenters/hyrax/permission_badge_spec.rb
|
2746
|
-
- spec/presenters/hyrax/presenter_factory_spec.rb
|
2747
|
-
- spec/presenters/hyrax/presenter_renderer_spec.rb
|
2748
|
-
- spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb
|
2749
|
-
- spec/presenters/hyrax/select_collection_type_presenter_spec.rb
|
2750
|
-
- spec/presenters/hyrax/select_type_list_presenter_spec.rb
|
2751
|
-
- spec/presenters/hyrax/select_type_presenter_spec.rb
|
2752
|
-
- spec/presenters/hyrax/single_use_link_presenter_spec.rb
|
2753
|
-
- spec/presenters/hyrax/transfers_presenter_spec.rb
|
2754
|
-
- spec/presenters/hyrax/trophy_presenter_spec.rb
|
2755
|
-
- spec/presenters/hyrax/twitter_presenter_spec.rb
|
2756
|
-
- spec/presenters/hyrax/user_profile_presenter_spec.rb
|
2757
|
-
- spec/presenters/hyrax/version_list_presenter_spec.rb
|
2758
|
-
- spec/presenters/hyrax/version_presenter_spec.rb
|
2759
|
-
- spec/presenters/hyrax/work_show_presenter_spec.rb
|
2760
|
-
- spec/presenters/hyrax/work_usage_spec.rb
|
2761
|
-
- spec/presenters/hyrax/workflow_presenter_spec.rb
|
2762
|
-
- spec/rails_helper.rb
|
2763
|
-
- spec/renderers/hyrax/renderers/attribute_renderer_spec.rb
|
2764
|
-
- spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
|
2765
|
-
- spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
|
2766
|
-
- spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
|
2767
|
-
- spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
|
2768
|
-
- spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
|
2769
|
-
- spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb
|
2770
|
-
- spec/requests/legacy_routing_spec.rb
|
2771
|
-
- spec/requests/riiif_spec.rb
|
2772
|
-
- spec/routing/admin_routes_spec.rb
|
2773
|
-
- spec/routing/api_route_spec.rb
|
2774
|
-
- spec/routing/citations_route_spec.rb
|
2775
|
-
- spec/routing/collection_permission_templates_routes_spec.rb
|
2776
|
-
- spec/routing/collection_types_routes.rb
|
2777
|
-
- spec/routing/dashboard_routes_spec.rb
|
2778
|
-
- spec/routing/featured_works_route_spec.rb
|
2779
|
-
- spec/routing/operations_spec.rb
|
2780
|
-
- spec/routing/ownership_transfers_route_spec.rb
|
2781
|
-
- spec/routing/resource_sync_spec.rb
|
2782
|
-
- spec/routing/route_spec.rb
|
2783
|
-
- spec/routing/single_use_link_spec.rb
|
2784
|
-
- spec/routing/stats_route_spec.rb
|
2785
|
-
- spec/search_builders/hyrax/abstract_type_relation_spec.rb
|
2786
|
-
- spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
|
2787
|
-
- spec/search_builders/hyrax/admin_set_search_builder_spec.rb
|
2788
|
-
- spec/search_builders/hyrax/catalog_search_builder_spec.rb
|
2789
|
-
- spec/search_builders/hyrax/collection_member_search_builder_spec.rb
|
2790
|
-
- spec/search_builders/hyrax/collection_search_builder_spec.rb
|
2791
|
-
- spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb
|
2792
|
-
- spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb
|
2793
|
-
- spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb
|
2794
|
-
- spec/search_builders/hyrax/embargo_search_builder_spec.rb
|
2795
|
-
- spec/search_builders/hyrax/file_set_search_builder_spec.rb
|
2796
|
-
- spec/search_builders/hyrax/lease_search_builder_spec.rb
|
2797
|
-
- spec/search_builders/hyrax/my/collections_search_builder_spec.rb
|
2798
|
-
- spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
|
2799
|
-
- spec/search_builders/hyrax/my/shares_search_builder_spec.rb
|
2800
|
-
- spec/search_builders/hyrax/my/works_search_builder_spec.rb
|
2801
|
-
- spec/search_builders/hyrax/parent_collection_search_builder_spec.rb
|
2802
|
-
- spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
|
2803
|
-
- spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
|
2804
|
-
- spec/search_builders/hyrax/work_relation_spec.rb
|
2805
|
-
- spec/search_builders/hyrax/work_search_builder_spec.rb
|
2806
|
-
- spec/search_builders/hyrax/works_search_builder_spec.rb
|
2807
|
-
- spec/services/hyrax/abstract_message_service_spec.rb
|
2808
|
-
- spec/services/hyrax/adapters/nesting_index_adapter_spec.rb
|
2809
|
-
- spec/services/hyrax/admin_set_create_service_spec.rb
|
2810
|
-
- spec/services/hyrax/admin_set_member_service_spec.rb
|
2811
|
-
- spec/services/hyrax/admin_set_service_spec.rb
|
2812
|
-
- spec/services/hyrax/batch_create_failure_service_spec.rb
|
2813
|
-
- spec/services/hyrax/batch_create_success_service_spec.rb
|
2814
|
-
- spec/services/hyrax/change_content_depositor_service_spec.rb
|
2815
|
-
- spec/services/hyrax/collection_member_service_spec.rb
|
2816
|
-
- spec/services/hyrax/collection_size_service_spec.rb
|
2817
|
-
- spec/services/hyrax/collection_types/create_service_spec.rb
|
2818
|
-
- spec/services/hyrax/collection_types/permissions_service_spec.rb
|
2819
|
-
- spec/services/hyrax/collections/collection_member_service_spec.rb
|
2820
|
-
- spec/services/hyrax/collections/managed_collections_service_spec.rb
|
2821
|
-
- spec/services/hyrax/collections/migration_service_spec.rb
|
2822
|
-
- spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb
|
2823
|
-
- spec/services/hyrax/collections/nested_collection_query_service_spec.rb
|
2824
|
-
- spec/services/hyrax/collections/permissions_create_service_spec.rb
|
2825
|
-
- spec/services/hyrax/collections/permissions_service_spec.rb
|
2826
|
-
- spec/services/hyrax/collections_service_spec.rb
|
2827
|
-
- spec/services/hyrax/curation_concern_spec.rb
|
2828
|
-
- spec/services/hyrax/database_migrator_spec.rb
|
2829
|
-
- spec/services/hyrax/default_middleware_stack_spec.rb
|
2830
|
-
- spec/services/hyrax/derivative_path_spec.rb
|
2831
|
-
- spec/services/hyrax/derivative_service_spec.rb
|
2832
|
-
- spec/services/hyrax/embargo_service_spec.rb
|
2833
|
-
- spec/services/hyrax/file_set_csv_service_spec.rb
|
2834
|
-
- spec/services/hyrax/file_set_derivatives_service_spec.rb
|
2835
|
-
- spec/services/hyrax/file_set_fixity_check_service_spec.rb
|
2836
|
-
- spec/services/hyrax/fixity_check_failure_service_spec.rb
|
2837
|
-
- spec/services/hyrax/graph_exporter_spec.rb
|
2838
|
-
- spec/services/hyrax/iiif_authorization_service_spec.rb
|
2839
|
-
- spec/services/hyrax/import_url_failure_service_spec.rb
|
2840
|
-
- spec/services/hyrax/lease_service_spec.rb
|
2841
|
-
- spec/services/hyrax/license_service_spec.rb
|
2842
|
-
- spec/services/hyrax/lock_manager_spec.rb
|
2843
|
-
- spec/services/hyrax/messenger_service_spec.rb
|
2844
|
-
- spec/services/hyrax/microdata_spec.rb
|
2845
|
-
- spec/services/hyrax/multiple_membership_checker_spec.rb
|
2846
|
-
- spec/services/hyrax/noid_spec.rb
|
2847
|
-
- spec/services/hyrax/permission_template_applicator_spec.rb
|
2848
|
-
- spec/services/hyrax/persist_derivatives_spec.rb
|
2849
|
-
- spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb
|
2850
|
-
- spec/services/hyrax/qa_select_service_spec.rb
|
2851
|
-
- spec/services/hyrax/quick_classification_query_spec.rb
|
2852
|
-
- spec/services/hyrax/repository_fixity_check_service_spec.rb
|
2853
|
-
- spec/services/hyrax/resource_types_service_spec.rb
|
2854
|
-
- spec/services/hyrax/rights_statement_service_spec.rb
|
2855
|
-
- spec/services/hyrax/statistics/collections/over_time_spec.rb
|
2856
|
-
- spec/services/hyrax/statistics/depositors/summary_spec.rb
|
2857
|
-
- spec/services/hyrax/statistics/file_sets/by_format_spec.rb
|
2858
|
-
- spec/services/hyrax/statistics/query_service_spec.rb
|
2859
|
-
- spec/services/hyrax/statistics/system_stats_spec.rb
|
2860
|
-
- spec/services/hyrax/statistics/users/over_time_spec.rb
|
2861
|
-
- spec/services/hyrax/statistics/works/by_depositor_spec.rb
|
2862
|
-
- spec/services/hyrax/statistics/works/by_resource_type_spec.rb
|
2863
|
-
- spec/services/hyrax/statistics/works/count_spec.rb
|
2864
|
-
- spec/services/hyrax/statistics/works/over_time_spec.rb
|
2865
|
-
- spec/services/hyrax/thumbnail_path_service_spec.rb
|
2866
|
-
- spec/services/hyrax/tolerant_select_service_spec.rb
|
2867
|
-
- spec/services/hyrax/user_stat_importer_spec.rb
|
2868
|
-
- spec/services/hyrax/versioning_service_spec.rb
|
2869
|
-
- spec/services/hyrax/work_query_service_spec.rb
|
2870
|
-
- spec/services/hyrax/workflow/action_taken_service_spec.rb
|
2871
|
-
- spec/services/hyrax/workflow/activate_object_spec.rb
|
2872
|
-
- spec/services/hyrax/workflow/changes_required_notification_spec.rb
|
2873
|
-
- spec/services/hyrax/workflow/deactivate_object_spec.rb
|
2874
|
-
- spec/services/hyrax/workflow/deposited_notification_spec.rb
|
2875
|
-
- spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
|
2876
|
-
- spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
|
2877
|
-
- spec/services/hyrax/workflow/method_generator_spec.rb
|
2878
|
-
- spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
|
2879
|
-
- spec/services/hyrax/workflow/notification_generator_spec.rb
|
2880
|
-
- spec/services/hyrax/workflow/notification_service_spec.rb
|
2881
|
-
- spec/services/hyrax/workflow/pending_review_notification_spec.rb
|
2882
|
-
- spec/services/hyrax/workflow/permission_generator_spec.rb
|
2883
|
-
- spec/services/hyrax/workflow/permission_query_spec.rb
|
2884
|
-
- spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb
|
2885
|
-
- spec/services/hyrax/workflow/sipity_actions_generator_spec.rb
|
2886
|
-
- spec/services/hyrax/workflow/state_machine_generator_spec.rb
|
2887
|
-
- spec/services/hyrax/workflow/status_list_service_spec.rb
|
2888
|
-
- spec/services/hyrax/workflow/workflow_factory_spec.rb
|
2889
|
-
- spec/services/hyrax/workflow/workflow_importer_spec.rb
|
2890
|
-
- spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb
|
2891
|
-
- spec/services/hyrax/workflow/workflow_schema_spec.rb
|
2892
|
-
- spec/services/hyrax/working_directory_spec.rb
|
2893
|
-
- spec/services/hyrax/works/managed_works_service_spec.rb
|
2894
|
-
- spec/spec_helper.rb
|
2895
|
-
- spec/strategies/hyrax/strategies/yaml_strategy_spec.rb
|
2896
|
-
- spec/support/controller_level_helpers.rb
|
2897
|
-
- spec/support/factory_helpers.rb
|
2898
|
-
- spec/support/fakes/fake_authority.rb
|
2899
|
-
- spec/support/features.rb
|
2900
|
-
- spec/support/features/batch_edit_actions.rb
|
2901
|
-
- spec/support/features/session_helpers.rb
|
2902
|
-
- spec/support/features/workflow.rb
|
2903
|
-
- spec/support/input_support.rb
|
2904
|
-
- spec/support/logging_formatter.rb
|
2905
|
-
- spec/support/matchers/api_responses.rb
|
2906
|
-
- spec/support/matchers/collection_type_property_matchers.rb
|
2907
|
-
- spec/support/matchers/response_matchers.rb
|
2908
|
-
- spec/support/optional_example.rb
|
2909
|
-
- spec/support/rake.rb
|
2910
|
-
- spec/support/selectors.rb
|
2911
|
-
- spec/support/spec_statistic.rb
|
2912
|
-
- spec/support/speedup.rb
|
2913
|
-
- spec/support/statistic_helper.rb
|
2914
|
-
- spec/tasks/rake_spec.rb
|
2915
|
-
- spec/test_app_templates/Gemfile.extra
|
2916
|
-
- spec/test_app_templates/disable_animations_in_test_environment.rb
|
2917
|
-
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
2918
|
-
- spec/views/_flash_msg.html.erb_spec.rb
|
2919
|
-
- spec/views/_user_util_links.html.erb_spec.rb
|
2920
|
-
- spec/views/catalog/_index_list_default.html.erb_spec.rb
|
2921
|
-
- spec/views/catalog/_search_form.html.erb_spec.rb
|
2922
|
-
- spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
|
2923
|
-
- spec/views/catalog/index.html.erb_spec.rb
|
2924
|
-
- spec/views/content_blocks/edit.html.erb_spec.rb
|
2925
|
-
- spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
|
2926
|
-
- spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
|
2927
|
-
- spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
|
2928
|
-
- spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb
|
2929
|
-
- spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb
|
2930
|
-
- spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb
|
2931
|
-
- spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
|
2932
|
-
- spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
|
2933
|
-
- spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
|
2934
|
-
- spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
|
2935
|
-
- spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
|
2936
|
-
- spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb
|
2937
|
-
- spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb
|
2938
|
-
- spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb
|
2939
|
-
- spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb
|
2940
|
-
- spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb
|
2941
|
-
- spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb
|
2942
|
-
- spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb
|
2943
|
-
- spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb
|
2944
|
-
- spec/views/hyrax/admin/features/index.html.erb_spec.rb
|
2945
|
-
- spec/views/hyrax/admin/stats/show.html.erb_spec.rb
|
2946
|
-
- spec/views/hyrax/admin/users/index.html.erb_spec.rb
|
2947
|
-
- spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb
|
2948
|
-
- spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb
|
2949
|
-
- spec/views/hyrax/base/_attributes.html.erb_spec.rb
|
2950
|
-
- spec/views/hyrax/base/_citations.html.erb_spec.rb
|
2951
|
-
- spec/views/hyrax/base/_form.html.erb_spec.rb
|
2952
|
-
- spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
|
2953
|
-
- spec/views/hyrax/base/_form_files.html.erb_spec.rb
|
2954
|
-
- spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
|
2955
|
-
- spec/views/hyrax/base/_form_progress.html.erb_spec.rb
|
2956
|
-
- spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
|
2957
|
-
- spec/views/hyrax/base/_form_rendering.html.erb_spec.rb
|
2958
|
-
- spec/views/hyrax/base/_items.html.erb_spec.rb
|
2959
|
-
- spec/views/hyrax/base/_member.html.erb_spec.rb
|
2960
|
-
- spec/views/hyrax/base/_relationships.html.erb_spec.rb
|
2961
|
-
- spec/views/hyrax/base/_show_actions.html.erb_spec.rb
|
2962
|
-
- spec/views/hyrax/base/_social_media.html.erb_spec.rb
|
2963
|
-
- spec/views/hyrax/base/edit.html.erb_spec.rb
|
2964
|
-
- spec/views/hyrax/base/file_manager.html.erb_spec.rb
|
2965
|
-
- spec/views/hyrax/base/show.html.erb_spec.rb
|
2966
|
-
- spec/views/hyrax/base/show.json.jbuilder_spec.rb
|
2967
|
-
- spec/views/hyrax/base/unauthorized.html.erb_spec.rb
|
2968
|
-
- spec/views/hyrax/base/unavailable.html.erb_spec.rb
|
2969
|
-
- spec/views/hyrax/batch_edits/check_all_spec.rb
|
2970
|
-
- spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
|
2971
|
-
- spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
|
2972
|
-
- spec/views/hyrax/citations/work.html.erb_spec.rb
|
2973
|
-
- spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
|
2974
|
-
- spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
|
2975
|
-
- spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
|
2976
|
-
- spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb
|
2977
|
-
- spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb
|
2978
|
-
- spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb
|
2979
|
-
- spec/views/hyrax/collections/show.html.erb_spec.rb
|
2980
|
-
- spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
|
2981
|
-
- spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb
|
2982
|
-
- spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
|
2983
|
-
- spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb
|
2984
|
-
- spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb
|
2985
|
-
- spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
|
2986
|
-
- spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
|
2987
|
-
- spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb
|
2988
|
-
- spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb
|
2989
|
-
- spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb
|
2990
|
-
- spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb
|
2991
|
-
- spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
|
2992
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
|
2993
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
|
2994
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
|
2995
|
-
- spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb
|
2996
|
-
- spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb
|
2997
|
-
- spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb
|
2998
|
-
- spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb
|
2999
|
-
- spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb
|
3000
|
-
- spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb
|
3001
|
-
- spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
|
3002
|
-
- spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
|
3003
|
-
- spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb
|
3004
|
-
- spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
|
3005
|
-
- spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb
|
3006
|
-
- spec/views/hyrax/dashboard/show_user_spec.rb
|
3007
|
-
- spec/views/hyrax/depositors/index.html.erb_spec.rb
|
3008
|
-
- spec/views/hyrax/embargoes/index.html.erb_spec.rb
|
3009
|
-
- spec/views/hyrax/file_sets/_actions.html.erb_spec.rb
|
3010
|
-
- spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
|
3011
|
-
- spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
|
3012
|
-
- spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
|
3013
|
-
- spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb
|
3014
|
-
- spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb
|
3015
|
-
- spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb
|
3016
|
-
- spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb
|
3017
|
-
- spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb
|
3018
|
-
- spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb
|
3019
|
-
- spec/views/hyrax/file_sets/show.html.erb_spec.rb
|
3020
|
-
- spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb
|
3021
|
-
- spec/views/hyrax/homepage/_announcement.html.erb_spec.rb
|
3022
|
-
- spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
|
3023
|
-
- spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
|
3024
|
-
- spec/views/hyrax/homepage/index.html.erb_spec.rb
|
3025
|
-
- spec/views/hyrax/leases/index.html.erb_spec.rb
|
3026
|
-
- spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb
|
3027
|
-
- spec/views/hyrax/my/_search_header.html.erb_spec.rb
|
3028
|
-
- spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
|
3029
|
-
- spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
|
3030
|
-
- spec/views/hyrax/my/collections/index.html.erb_spec.rb
|
3031
|
-
- spec/views/hyrax/my/facet.html.erb_spec.rb
|
3032
|
-
- spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
|
3033
|
-
- spec/views/hyrax/my/works/index.html.erb_spec.rb
|
3034
|
-
- spec/views/hyrax/permissions/confirm.html.erb_spec.rb
|
3035
|
-
- spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
|
3036
|
-
- spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
|
3037
|
-
- spec/views/hyrax/stats/file.html.erb_spec.rb
|
3038
|
-
- spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
|
3039
|
-
- spec/views/hyrax/users/_user_info.html.erb_spec.rb
|
3040
|
-
- spec/views/hyrax/users/index.html.erb_spec.rb
|
3041
|
-
- spec/views/hyrax/users/show.html.erb_spec.rb
|
3042
|
-
- spec/views/layouts/error.html.erb_spec.rb
|
3043
|
-
- spec/views/pages/edit.html.erb_spec.rb
|
3044
|
-
- spec/views/pages/show.html.erb_spec.rb
|
3045
|
-
- spec/views/records/edit_fields/_based_near.html.erb_spec.rb
|
3046
|
-
- spec/views/records/edit_fields/_description.html.erb_spec.rb
|
3047
|
-
- spec/views/records/edit_fields/_language.html.erb_spec.rb
|
3048
|
-
- spec/views/records/edit_fields/_subject.html.erb_spec.rb
|
3049
|
-
- spec/views/shared/select_work_type_modal.html.erb_spec.rb
|
3050
2422
|
- tasks/hyrax_dev.rake
|
3051
2423
|
- template.rb
|
3052
2424
|
- vendor/assets/fonts/fontawesome-webfont.svg
|
@@ -3094,703 +2466,4 @@ summary: Hyrax is a front-end based on the robust Samvera framework, providing a
|
|
3094
2466
|
object types on demand, to deposit content via multiple workflows, and to describe
|
3095
2467
|
content with flexible metadata. Numerous optional features may be turned on in the
|
3096
2468
|
administrative dashboard or added through plugins.
|
3097
|
-
test_files:
|
3098
|
-
- spec/.gitignore
|
3099
|
-
- spec/abilities/ability_spec.rb
|
3100
|
-
- spec/abilities/admin_ability_spec.rb
|
3101
|
-
- spec/abilities/admin_set_ability_spec.rb
|
3102
|
-
- spec/abilities/collection_ability_spec.rb
|
3103
|
-
- spec/abilities/collection_type_ability_spec.rb
|
3104
|
-
- spec/abilities/embargo_and_lease_ability_spec.rb
|
3105
|
-
- spec/abilities/file_set_abilities_spec.rb
|
3106
|
-
- spec/abilities/generic_work_abilities_spec.rb
|
3107
|
-
- spec/abilities/operation_ability_spec.rb
|
3108
|
-
- spec/abilities/permission_template_ability_spec.rb
|
3109
|
-
- spec/abilities/proxies_and_transfer_abilities_spec.rb
|
3110
|
-
- spec/abilities/solr_document_ability_spec.rb
|
3111
|
-
- spec/actors/hyrax/actors/apply_order_actor_spec.rb
|
3112
|
-
- spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
|
3113
|
-
- spec/actors/hyrax/actors/attach_members_actor_spec.rb
|
3114
|
-
- spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
|
3115
|
-
- spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
|
3116
|
-
- spec/actors/hyrax/actors/collections_membership_actor_spec.rb
|
3117
|
-
- spec/actors/hyrax/actors/create_with_files_actor_spec.rb
|
3118
|
-
- spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb
|
3119
|
-
- spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
|
3120
|
-
- spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb
|
3121
|
-
- spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
|
3122
|
-
- spec/actors/hyrax/actors/embargo_actor_spec.rb
|
3123
|
-
- spec/actors/hyrax/actors/featured_work_actor_spec.rb
|
3124
|
-
- spec/actors/hyrax/actors/file_actor_spec.rb
|
3125
|
-
- spec/actors/hyrax/actors/file_set_actor_spec.rb
|
3126
|
-
- spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb
|
3127
|
-
- spec/actors/hyrax/actors/generic_work_actor_spec.rb
|
3128
|
-
- spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
|
3129
|
-
- spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
|
3130
|
-
- spec/actors/hyrax/actors/lease_actor_spec.rb
|
3131
|
-
- spec/actors/hyrax/actors/model_actor_spec.rb
|
3132
|
-
- spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
|
3133
|
-
- spec/actors/hyrax/actors/ordered_members_actor_spec.rb
|
3134
|
-
- spec/actors/hyrax/actors/transactional_request_spec.rb
|
3135
|
-
- spec/actors/hyrax/actors/transfer_request_actor_spec.rb
|
3136
|
-
- spec/authorities/qa/authorities/collections_spec.rb
|
3137
|
-
- spec/authorities/qa/authorities/find_works_spec.rb
|
3138
|
-
- spec/channels/hyrax/application_cable/channel_spec.rb
|
3139
|
-
- spec/channels/hyrax/application_cable/connection_spec.rb
|
3140
|
-
- spec/channels/hyrax/notifications_channel_spec.rb
|
3141
|
-
- spec/config/hyrax_events_spec.rb
|
3142
|
-
- spec/controllers/catalog_controller_spec.rb
|
3143
|
-
- spec/controllers/hyrax/accepts_batches_controller_spec.rb
|
3144
|
-
- spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
|
3145
|
-
- spec/controllers/hyrax/admin/appearances_controller_spec.rb
|
3146
|
-
- spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb
|
3147
|
-
- spec/controllers/hyrax/admin/collection_types_controller_spec.rb
|
3148
|
-
- spec/controllers/hyrax/admin/features_controller_spec.rb
|
3149
|
-
- spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
|
3150
|
-
- spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
|
3151
|
-
- spec/controllers/hyrax/admin/stats_controller_spec.rb
|
3152
|
-
- spec/controllers/hyrax/admin/strategies_controller_spec.rb
|
3153
|
-
- spec/controllers/hyrax/admin/users_controller_spec.rb
|
3154
|
-
- spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
|
3155
|
-
- spec/controllers/hyrax/admin/workflows_controller_spec.rb
|
3156
|
-
- spec/controllers/hyrax/api/items_controller_spec.rb
|
3157
|
-
- spec/controllers/hyrax/api/zotero_controller_spec.rb
|
3158
|
-
- spec/controllers/hyrax/batch_edits_controller_spec.rb
|
3159
|
-
- spec/controllers/hyrax/batch_uploads_controller_spec.rb
|
3160
|
-
- spec/controllers/hyrax/citations_controller_spec.rb
|
3161
|
-
- spec/controllers/hyrax/collections_controller_spec.rb
|
3162
|
-
- spec/controllers/hyrax/contact_form_controller_spec.rb
|
3163
|
-
- spec/controllers/hyrax/content_blocks_controller_spec.rb
|
3164
|
-
- spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb
|
3165
|
-
- spec/controllers/hyrax/dashboard/collections_controller_spec.rb
|
3166
|
-
- spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb
|
3167
|
-
- spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
|
3168
|
-
- spec/controllers/hyrax/dashboard/works_controller_spec.rb
|
3169
|
-
- spec/controllers/hyrax/dashboard_controller_spec.rb
|
3170
|
-
- spec/controllers/hyrax/depositors_controller_spec.rb
|
3171
|
-
- spec/controllers/hyrax/downloads_controller_spec.rb
|
3172
|
-
- spec/controllers/hyrax/embargoes_controller_spec.rb
|
3173
|
-
- spec/controllers/hyrax/featured_work_lists_controller_spec.rb
|
3174
|
-
- spec/controllers/hyrax/featured_works_controller_spec.rb
|
3175
|
-
- spec/controllers/hyrax/file_sets_controller_spec.rb
|
3176
|
-
- spec/controllers/hyrax/fixity_checks_controller_spec.rb
|
3177
|
-
- spec/controllers/hyrax/generic_works_controller_json_spec.rb
|
3178
|
-
- spec/controllers/hyrax/generic_works_controller_spec.rb
|
3179
|
-
- spec/controllers/hyrax/homepage_controller_spec.rb
|
3180
|
-
- spec/controllers/hyrax/leases_controller_spec.rb
|
3181
|
-
- spec/controllers/hyrax/my/collections_controller_spec.rb
|
3182
|
-
- spec/controllers/hyrax/my/highlights_controller_spec.rb
|
3183
|
-
- spec/controllers/hyrax/my/shares_controller_spec.rb
|
3184
|
-
- spec/controllers/hyrax/my/works_controller_spec.rb
|
3185
|
-
- spec/controllers/hyrax/notifications_controller_spec.rb
|
3186
|
-
- spec/controllers/hyrax/operations_controller_spec.rb
|
3187
|
-
- spec/controllers/hyrax/pages_controller_spec.rb
|
3188
|
-
- spec/controllers/hyrax/permissions_controller_spec.rb
|
3189
|
-
- spec/controllers/hyrax/resource_sync_controller_spec.rb
|
3190
|
-
- spec/controllers/hyrax/single_use_links_controller_spec.rb
|
3191
|
-
- spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
|
3192
|
-
- spec/controllers/hyrax/static_controller_spec.rb
|
3193
|
-
- spec/controllers/hyrax/stats_controller_spec.rb
|
3194
|
-
- spec/controllers/hyrax/transfers_controller_spec.rb
|
3195
|
-
- spec/controllers/hyrax/trophies_controller_spec.rb
|
3196
|
-
- spec/controllers/hyrax/uploads_controller_spec.rb
|
3197
|
-
- spec/controllers/hyrax/users_controller_spec.rb
|
3198
|
-
- spec/controllers/hyrax/workflow_actions_controller_spec.rb
|
3199
|
-
- spec/conversions/power_converters/polymorphic_type_spec.rb
|
3200
|
-
- spec/conversions/power_converters/sipity_action_name_spec.rb
|
3201
|
-
- spec/conversions/power_converters/sipity_action_spec.rb
|
3202
|
-
- spec/conversions/power_converters/sipity_agent_spec.rb
|
3203
|
-
- spec/conversions/power_converters/sipity_entity_spec.rb
|
3204
|
-
- spec/conversions/power_converters/sipity_role_spec.rb
|
3205
|
-
- spec/conversions/power_converters/sipity_workflow_id_spec.rb
|
3206
|
-
- spec/conversions/power_converters/sipity_workflow_state_spec.rb
|
3207
|
-
- spec/factories/admin_sets.rb
|
3208
|
-
- spec/factories/admin_sets_lw.rb
|
3209
|
-
- spec/factories/api_items.rb
|
3210
|
-
- spec/factories/collection_branding_infos.rb
|
3211
|
-
- spec/factories/collection_type_participants.rb
|
3212
|
-
- spec/factories/collection_types.rb
|
3213
|
-
- spec/factories/collections.rb
|
3214
|
-
- spec/factories/collections_factory.rb
|
3215
|
-
- spec/factories/content_blocks.rb
|
3216
|
-
- spec/factories/featured_works.rb
|
3217
|
-
- spec/factories/file_sets.rb
|
3218
|
-
- spec/factories/generic_works.rb
|
3219
|
-
- spec/factories/object_id.rb
|
3220
|
-
- spec/factories/operations.rb
|
3221
|
-
- spec/factories/permission_template_accesses.rb
|
3222
|
-
- spec/factories/permission_templates.rb
|
3223
|
-
- spec/factories/proxy_deposit_requests.rb
|
3224
|
-
- spec/factories/single_use_links.rb
|
3225
|
-
- spec/factories/sipity_entities.rb
|
3226
|
-
- spec/factories/uploaded_files.rb
|
3227
|
-
- spec/factories/users.rb
|
3228
|
-
- spec/factories/workflow_actions.rb
|
3229
|
-
- spec/factories/workflow_states.rb
|
3230
|
-
- spec/factories/workflows.rb
|
3231
|
-
- spec/factory_tests/adminsets_factory_spec.rb
|
3232
|
-
- spec/factory_tests/collections_factory_spec.rb
|
3233
|
-
- spec/features/actor_stack_spec.rb
|
3234
|
-
- spec/features/admin_spec.rb
|
3235
|
-
- spec/features/batch_create_spec.rb
|
3236
|
-
- spec/features/batch_edit_spec.rb
|
3237
|
-
- spec/features/browse_catalog_spec.rb
|
3238
|
-
- spec/features/browse_dashboard_works_spec.rb
|
3239
|
-
- spec/features/catalog_search_spec.rb
|
3240
|
-
- spec/features/collection_multi_membership_spec.rb
|
3241
|
-
- spec/features/collection_spec.rb
|
3242
|
-
- spec/features/collection_type_spec.rb
|
3243
|
-
- spec/features/contact_form_spec.rb
|
3244
|
-
- spec/features/create_child_work_spec.rb
|
3245
|
-
- spec/features/create_work_admin_spec.rb
|
3246
|
-
- spec/features/create_work_spec.rb
|
3247
|
-
- spec/features/dashboard/all_works.rb
|
3248
|
-
- spec/features/dashboard/collection_spec.rb
|
3249
|
-
- spec/features/dashboard/display_admin_dashboard_spec.rb
|
3250
|
-
- spec/features/dashboard/display_dashboard_spec.rb
|
3251
|
-
- spec/features/delete_work_spec.rb
|
3252
|
-
- spec/features/edit_content_block_admin_spec.rb
|
3253
|
-
- spec/features/edit_file_spec.rb
|
3254
|
-
- spec/features/edit_work_spec.rb
|
3255
|
-
- spec/features/embargo_spec.rb
|
3256
|
-
- spec/features/homepage_spec.rb
|
3257
|
-
- spec/features/lease_spec.rb
|
3258
|
-
- spec/features/notifications_spec.rb
|
3259
|
-
- spec/features/ownership_transfer_spec.rb
|
3260
|
-
- spec/features/proxy_spec.rb
|
3261
|
-
- spec/features/search_spec.rb
|
3262
|
-
- spec/features/static_pages_spec.rb
|
3263
|
-
- spec/features/users_spec.rb
|
3264
|
-
- spec/features/work_generator_spec.rb
|
3265
|
-
- spec/features/work_show_spec.rb
|
3266
|
-
- spec/features/workflow_roles_spec.rb
|
3267
|
-
- spec/features/workflow_state_changes_spec.rb
|
3268
|
-
- spec/fixtures/1.5mb-avatar.jpg
|
3269
|
-
- spec/fixtures/4-20.png
|
3270
|
-
- spec/fixtures/Example.ogg
|
3271
|
-
- spec/fixtures/authorities/licenses.yml
|
3272
|
-
- spec/fixtures/charter.docx
|
3273
|
-
- spec/fixtures/config/schema_org.yml
|
3274
|
-
- spec/fixtures/config/schema_org_second.yml
|
3275
|
-
- spec/fixtures/countdown.avi
|
3276
|
-
- spec/fixtures/docx_fits.xml
|
3277
|
-
- spec/fixtures/dublin_core_rdf_descMetadata.nt
|
3278
|
-
- spec/fixtures/hyrax/.gitignore
|
3279
|
-
- spec/fixtures/hyrax/hyrax_test4.pdf
|
3280
|
-
- spec/fixtures/hyrax/hyrax_test5.mp3
|
3281
|
-
- spec/fixtures/hyrax_generic_stub.txt
|
3282
|
-
- spec/fixtures/icons.zip
|
3283
|
-
- spec/fixtures/image.jp2
|
3284
|
-
- spec/fixtures/image.jpg
|
3285
|
-
- spec/fixtures/image.png
|
3286
|
-
- spec/fixtures/jp2_fits.xml
|
3287
|
-
- spec/fixtures/jpg_fits.xml
|
3288
|
-
- spec/fixtures/mp3_fits.xml
|
3289
|
-
- spec/fixtures/pdf_fits.xml
|
3290
|
-
- spec/fixtures/piano_note.wav
|
3291
|
-
- spec/fixtures/png_fits.xml
|
3292
|
-
- spec/fixtures/sample_mpeg4.mp4
|
3293
|
-
- spec/fixtures/small_file.txt
|
3294
|
-
- spec/fixtures/spoken-text.m4a
|
3295
|
-
- spec/fixtures/txt_fits.xml
|
3296
|
-
- spec/fixtures/world.png
|
3297
|
-
- spec/fixtures/xls_fits.xml
|
3298
|
-
- spec/fixtures/xml_fits.xml
|
3299
|
-
- spec/forms/hyrax/forms/admin/appearance_spec.rb
|
3300
|
-
- spec/forms/hyrax/forms/admin/collection_type_form_spec.rb
|
3301
|
-
- spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb
|
3302
|
-
- spec/forms/hyrax/forms/admin_set_form_spec.rb
|
3303
|
-
- spec/forms/hyrax/forms/batch_edit_form_spec.rb
|
3304
|
-
- spec/forms/hyrax/forms/batch_upload_form_spec.rb
|
3305
|
-
- spec/forms/hyrax/forms/collection_form_spec.rb
|
3306
|
-
- spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb
|
3307
|
-
- spec/forms/hyrax/forms/file_manager_form_spec.rb
|
3308
|
-
- spec/forms/hyrax/forms/file_set_edit_form_spec.rb
|
3309
|
-
- spec/forms/hyrax/forms/permission_template_form_spec.rb
|
3310
|
-
- spec/forms/hyrax/forms/work_form_spec.rb
|
3311
|
-
- spec/forms/hyrax/forms/workflow_action_form_spec.rb
|
3312
|
-
- spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
|
3313
|
-
- spec/forms/hyrax/generic_work_form_spec.rb
|
3314
|
-
- spec/helpers/blacklight_helper_spec.rb
|
3315
|
-
- spec/helpers/hyrax/ability_helper_spec.rb
|
3316
|
-
- spec/helpers/hyrax/batch_edits_helper_spec.rb
|
3317
|
-
- spec/helpers/hyrax/charts_helper_spec.rb
|
3318
|
-
- spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
|
3319
|
-
- spec/helpers/hyrax/collections_helper_spec.rb
|
3320
|
-
- spec/helpers/hyrax/content_block_helper_spec.rb
|
3321
|
-
- spec/helpers/hyrax/dashboard_helper_behavior_spec.rb
|
3322
|
-
- spec/helpers/hyrax/file_set_helper_spec.rb
|
3323
|
-
- spec/helpers/hyrax/iiif_helper_spec.rb
|
3324
|
-
- spec/helpers/hyrax/trophy_helper_spec.rb
|
3325
|
-
- spec/helpers/hyrax_helper_spec.rb
|
3326
|
-
- spec/hyrax/transactions/create_work_spec.rb
|
3327
|
-
- spec/hyrax/transactions/steps/apply_permission_template_spec.rb
|
3328
|
-
- spec/hyrax/transactions/steps/ensure_admin_set_spec.rb
|
3329
|
-
- spec/hyrax/transactions/steps/ensure_permission_template_spec.rb
|
3330
|
-
- spec/hyrax/transactions/steps/save_work_spec.rb
|
3331
|
-
- spec/hyrax/transactions/steps/set_default_admin_set_spec.rb
|
3332
|
-
- spec/hyrax/transactions/steps/set_modified_date_spec.rb
|
3333
|
-
- spec/hyrax/transactions/steps/set_uploaded_date_spec.rb
|
3334
|
-
- spec/indexers/hyrax/collection_indexer_spec.rb
|
3335
|
-
- spec/indexers/hyrax/file_set_indexer_spec.rb
|
3336
|
-
- spec/indexers/hyrax/generic_work_indexer_spec.rb
|
3337
|
-
- spec/indexers/hyrax/repository_reindexer_spec.rb
|
3338
|
-
- spec/inputs/controlled_vocabulary_input_spec.rb
|
3339
|
-
- spec/inputs/multifile_input_spec.rb
|
3340
|
-
- spec/javascripts/authority_select_spec.js
|
3341
|
-
- spec/javascripts/autocomplete_spec.js.coffee
|
3342
|
-
- spec/javascripts/batch_select_spec.js
|
3343
|
-
- spec/javascripts/charts_spec.coffee
|
3344
|
-
- spec/javascripts/checklist_item_spec.js
|
3345
|
-
- spec/javascripts/deposit_agreement_spec.js
|
3346
|
-
- spec/javascripts/file_manager_member_spec.coffee
|
3347
|
-
- spec/javascripts/file_manager_sorting_spec.coffee
|
3348
|
-
- spec/javascripts/fixtures/chart_example.html
|
3349
|
-
- spec/javascripts/fixtures/dashboard_batch_forms.html
|
3350
|
-
- spec/javascripts/fixtures/file_manager_member.html
|
3351
|
-
- spec/javascripts/fixtures/save_button.html
|
3352
|
-
- spec/javascripts/fixtures/sortable.html
|
3353
|
-
- spec/javascripts/fixtures/sul_table.html
|
3354
|
-
- spec/javascripts/grant_spec.js
|
3355
|
-
- spec/javascripts/helpers/jasmine-ajax.js
|
3356
|
-
- spec/javascripts/helpers/jasmine-jquery.js
|
3357
|
-
- spec/javascripts/helpers/test_fixtures.js.coffee
|
3358
|
-
- spec/javascripts/helpers/test_responses.js
|
3359
|
-
- spec/javascripts/jasmine_spec.rb
|
3360
|
-
- spec/javascripts/relationships_control_spec.js.coffee
|
3361
|
-
- spec/javascripts/required_field_spec.js
|
3362
|
-
- spec/javascripts/save_manager_spec.coffee
|
3363
|
-
- spec/javascripts/save_work_spec.js
|
3364
|
-
- spec/javascripts/settings_spec.js
|
3365
|
-
- spec/javascripts/single_use_links_spec.coffee
|
3366
|
-
- spec/javascripts/support/jasmine.yml
|
3367
|
-
- spec/javascripts/support/jasmine_helper.rb
|
3368
|
-
- spec/javascripts/tabs_spec.js.coffee
|
3369
|
-
- spec/javascripts/uploaded_files_spec.js
|
3370
|
-
- spec/javascripts/visibility_component_spec.js
|
3371
|
-
- spec/jobs/attach_files_to_work_job_spec.rb
|
3372
|
-
- spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb
|
3373
|
-
- spec/jobs/batch_create_job_spec.rb
|
3374
|
-
- spec/jobs/characterize_job_spec.rb
|
3375
|
-
- spec/jobs/content_delete_event_job_spec.rb
|
3376
|
-
- spec/jobs/content_deposit_event_job_spec.rb
|
3377
|
-
- spec/jobs/content_depositor_change_event_job_spec.rb
|
3378
|
-
- spec/jobs/content_new_version_event_job_spec.rb
|
3379
|
-
- spec/jobs/content_restored_version_event_job_spec.rb
|
3380
|
-
- spec/jobs/content_update_event_job_spec.rb
|
3381
|
-
- spec/jobs/create_derivatives_job_spec.rb
|
3382
|
-
- spec/jobs/create_work_job_spec.rb
|
3383
|
-
- spec/jobs/file_set_attached_event_job_spec.rb
|
3384
|
-
- spec/jobs/fixity_check_job_spec.rb
|
3385
|
-
- spec/jobs/hyrax/grant_edit_job_spec.rb
|
3386
|
-
- spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
|
3387
|
-
- spec/jobs/hyrax/grant_read_job_spec.rb
|
3388
|
-
- spec/jobs/hyrax/grant_read_to_members_job_spec.rb
|
3389
|
-
- spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
|
3390
|
-
- spec/jobs/hyrax/revoke_edit_job_spec.rb
|
3391
|
-
- spec/jobs/import_export_job_spec.rb
|
3392
|
-
- spec/jobs/import_url_job_spec.rb
|
3393
|
-
- spec/jobs/ingest_local_file_job_spec.rb
|
3394
|
-
- spec/jobs/inherit_permissions_job_spec.rb
|
3395
|
-
- spec/jobs/stream_notifications_job_spec.rb
|
3396
|
-
- spec/jobs/user_edit_profile_event_job_spec.rb
|
3397
|
-
- spec/jobs/visibility_copy_job_spec.rb
|
3398
|
-
- spec/lib/hyrax/analytics_spec.rb
|
3399
|
-
- spec/lib/hyrax/arkivo/actor_spec.rb
|
3400
|
-
- spec/lib/hyrax/arkivo/create_subscription_job_spec.rb
|
3401
|
-
- spec/lib/hyrax/arkivo/metadata_munger_spec.rb
|
3402
|
-
- spec/lib/hyrax/arkivo/schema_validator_spec.rb
|
3403
|
-
- spec/lib/hyrax/arkivo_spec.rb
|
3404
|
-
- spec/lib/hyrax/collections/search_service_spec.rb
|
3405
|
-
- spec/lib/hyrax/configuration_spec.rb
|
3406
|
-
- spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
|
3407
|
-
- spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
|
3408
|
-
- spec/lib/hyrax/move_all_works_to_admin_set_spec.rb
|
3409
|
-
- spec/lib/hyrax/name_spec.rb
|
3410
|
-
- spec/lib/hyrax/redis_event_store_spec.rb
|
3411
|
-
- spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb
|
3412
|
-
- spec/lib/hyrax/resource_sync/change_list_writer_spec.rb
|
3413
|
-
- spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb
|
3414
|
-
- spec/lib/hyrax/resource_sync/source_description_writer_spec.rb
|
3415
|
-
- spec/lib/hyrax/role_registry_spec.rb
|
3416
|
-
- spec/lib/hyrax/search_state_spec.rb
|
3417
|
-
- spec/lib/hyrax/zotero/config_spec.rb
|
3418
|
-
- spec/lib/hyrax/zotero_spec.rb
|
3419
|
-
- spec/lib/hyrax_spec.rb
|
3420
|
-
- spec/models/admin_set_spec.rb
|
3421
|
-
- spec/models/batch_upload_item_spec.rb
|
3422
|
-
- spec/models/checksum_audit_log_spec.rb
|
3423
|
-
- spec/models/collection_branding_info_spec.rb
|
3424
|
-
- spec/models/collection_spec.rb
|
3425
|
-
- spec/models/concerns/hyrax/collection_nesting_spec.rb
|
3426
|
-
- spec/models/content_block_spec.rb
|
3427
|
-
- spec/models/featured_work_list_spec.rb
|
3428
|
-
- spec/models/featured_work_spec.rb
|
3429
|
-
- spec/models/file_download_stat_spec.rb
|
3430
|
-
- spec/models/file_set_spec.rb
|
3431
|
-
- spec/models/file_view_stat_spec.rb
|
3432
|
-
- spec/models/flipflop_spec.rb
|
3433
|
-
- spec/models/generic_work_spec.rb
|
3434
|
-
- spec/models/hyrax/batch_create_operation_spec.rb
|
3435
|
-
- spec/models/hyrax/collection_type_participant_spec.rb
|
3436
|
-
- spec/models/hyrax/collection_type_spec.rb
|
3437
|
-
- spec/models/hyrax/download_spec.rb
|
3438
|
-
- spec/models/hyrax/operation_spec.rb
|
3439
|
-
- spec/models/hyrax/pageview_spec.rb
|
3440
|
-
- spec/models/hyrax/permission_template_access_spec.rb
|
3441
|
-
- spec/models/hyrax/permission_template_spec.rb
|
3442
|
-
- spec/models/hyrax/permissions/readable_permissions_spec.rb
|
3443
|
-
- spec/models/hyrax/permissions/writable_permissions_spec.rb
|
3444
|
-
- spec/models/hyrax/uploaded_file_spec.rb
|
3445
|
-
- spec/models/hyrax/user_usage_stats_spec.rb
|
3446
|
-
- spec/models/hyrax/work_behavior_spec.rb
|
3447
|
-
- spec/models/job_io_wrapper_spec.rb
|
3448
|
-
- spec/models/proxy_deposit_request_spec.rb
|
3449
|
-
- spec/models/single_use_link_spec.rb
|
3450
|
-
- spec/models/sipity/agent_spec.rb
|
3451
|
-
- spec/models/sipity/comment_spec.rb
|
3452
|
-
- spec/models/sipity/entity_spec.rb
|
3453
|
-
- spec/models/sipity/entity_specific_responsibility_spec.rb
|
3454
|
-
- spec/models/sipity/notifiable_context_spec.rb
|
3455
|
-
- spec/models/sipity/notification_recipient_spec.rb
|
3456
|
-
- spec/models/sipity/notification_spec.rb
|
3457
|
-
- spec/models/sipity/role_spec.rb
|
3458
|
-
- spec/models/sipity/workflow_action_spec.rb
|
3459
|
-
- spec/models/sipity/workflow_responsibility_spec.rb
|
3460
|
-
- spec/models/sipity/workflow_role_spec.rb
|
3461
|
-
- spec/models/sipity/workflow_spec.rb
|
3462
|
-
- spec/models/sipity/workflow_state_action_permission_spec.rb
|
3463
|
-
- spec/models/sipity/workflow_state_action_spec.rb
|
3464
|
-
- spec/models/sipity/workflow_state_spec.rb
|
3465
|
-
- spec/models/solr_document_spec.rb
|
3466
|
-
- spec/models/trophy_spec.rb
|
3467
|
-
- spec/models/user_mailbox_spec.rb
|
3468
|
-
- spec/models/user_spec.rb
|
3469
|
-
- spec/models/work_view_stat_spec.rb
|
3470
|
-
- spec/presenters/hyrax/admin/dashboard_presenter_spec.rb
|
3471
|
-
- spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb
|
3472
|
-
- spec/presenters/hyrax/admin/repository_object_presenter_spec.rb
|
3473
|
-
- spec/presenters/hyrax/admin/user_activity_presenter_spec.rb
|
3474
|
-
- spec/presenters/hyrax/admin/users_presenter_spec.rb
|
3475
|
-
- spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb
|
3476
|
-
- spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb
|
3477
|
-
- spec/presenters/hyrax/admin_set_options_presenter_spec.rb
|
3478
|
-
- spec/presenters/hyrax/admin_set_presenter_spec.rb
|
3479
|
-
- spec/presenters/hyrax/admin_stats_presenter_spec.rb
|
3480
|
-
- spec/presenters/hyrax/collection_options_presenter_spec.rb
|
3481
|
-
- spec/presenters/hyrax/collection_presenter_spec.rb
|
3482
|
-
- spec/presenters/hyrax/dashboard/user_presenter_spec.rb
|
3483
|
-
- spec/presenters/hyrax/embargo_presenter_spec.rb
|
3484
|
-
- spec/presenters/hyrax/file_set_presenter_spec.rb
|
3485
|
-
- spec/presenters/hyrax/file_usage_spec.rb
|
3486
|
-
- spec/presenters/hyrax/fixity_status_presenter_spec.rb
|
3487
|
-
- spec/presenters/hyrax/homepage_presenter_spec.rb
|
3488
|
-
- spec/presenters/hyrax/inspect_work_presenter_spec.rb
|
3489
|
-
- spec/presenters/hyrax/lease_presenter_spec.rb
|
3490
|
-
- spec/presenters/hyrax/member_presenter_factory_spec.rb
|
3491
|
-
- spec/presenters/hyrax/menu_presenter_spec.rb
|
3492
|
-
- spec/presenters/hyrax/permission_badge_spec.rb
|
3493
|
-
- spec/presenters/hyrax/presenter_factory_spec.rb
|
3494
|
-
- spec/presenters/hyrax/presenter_renderer_spec.rb
|
3495
|
-
- spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb
|
3496
|
-
- spec/presenters/hyrax/select_collection_type_presenter_spec.rb
|
3497
|
-
- spec/presenters/hyrax/select_type_list_presenter_spec.rb
|
3498
|
-
- spec/presenters/hyrax/select_type_presenter_spec.rb
|
3499
|
-
- spec/presenters/hyrax/single_use_link_presenter_spec.rb
|
3500
|
-
- spec/presenters/hyrax/transfers_presenter_spec.rb
|
3501
|
-
- spec/presenters/hyrax/trophy_presenter_spec.rb
|
3502
|
-
- spec/presenters/hyrax/twitter_presenter_spec.rb
|
3503
|
-
- spec/presenters/hyrax/user_profile_presenter_spec.rb
|
3504
|
-
- spec/presenters/hyrax/version_list_presenter_spec.rb
|
3505
|
-
- spec/presenters/hyrax/version_presenter_spec.rb
|
3506
|
-
- spec/presenters/hyrax/work_show_presenter_spec.rb
|
3507
|
-
- spec/presenters/hyrax/work_usage_spec.rb
|
3508
|
-
- spec/presenters/hyrax/workflow_presenter_spec.rb
|
3509
|
-
- spec/rails_helper.rb
|
3510
|
-
- spec/renderers/hyrax/renderers/attribute_renderer_spec.rb
|
3511
|
-
- spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
|
3512
|
-
- spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
|
3513
|
-
- spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
|
3514
|
-
- spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
|
3515
|
-
- spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
|
3516
|
-
- spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb
|
3517
|
-
- spec/requests/legacy_routing_spec.rb
|
3518
|
-
- spec/requests/riiif_spec.rb
|
3519
|
-
- spec/routing/admin_routes_spec.rb
|
3520
|
-
- spec/routing/api_route_spec.rb
|
3521
|
-
- spec/routing/citations_route_spec.rb
|
3522
|
-
- spec/routing/collection_permission_templates_routes_spec.rb
|
3523
|
-
- spec/routing/collection_types_routes.rb
|
3524
|
-
- spec/routing/dashboard_routes_spec.rb
|
3525
|
-
- spec/routing/featured_works_route_spec.rb
|
3526
|
-
- spec/routing/operations_spec.rb
|
3527
|
-
- spec/routing/ownership_transfers_route_spec.rb
|
3528
|
-
- spec/routing/resource_sync_spec.rb
|
3529
|
-
- spec/routing/route_spec.rb
|
3530
|
-
- spec/routing/single_use_link_spec.rb
|
3531
|
-
- spec/routing/stats_route_spec.rb
|
3532
|
-
- spec/search_builders/hyrax/abstract_type_relation_spec.rb
|
3533
|
-
- spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
|
3534
|
-
- spec/search_builders/hyrax/admin_set_search_builder_spec.rb
|
3535
|
-
- spec/search_builders/hyrax/catalog_search_builder_spec.rb
|
3536
|
-
- spec/search_builders/hyrax/collection_member_search_builder_spec.rb
|
3537
|
-
- spec/search_builders/hyrax/collection_search_builder_spec.rb
|
3538
|
-
- spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb
|
3539
|
-
- spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb
|
3540
|
-
- spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb
|
3541
|
-
- spec/search_builders/hyrax/embargo_search_builder_spec.rb
|
3542
|
-
- spec/search_builders/hyrax/file_set_search_builder_spec.rb
|
3543
|
-
- spec/search_builders/hyrax/lease_search_builder_spec.rb
|
3544
|
-
- spec/search_builders/hyrax/my/collections_search_builder_spec.rb
|
3545
|
-
- spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
|
3546
|
-
- spec/search_builders/hyrax/my/shares_search_builder_spec.rb
|
3547
|
-
- spec/search_builders/hyrax/my/works_search_builder_spec.rb
|
3548
|
-
- spec/search_builders/hyrax/parent_collection_search_builder_spec.rb
|
3549
|
-
- spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
|
3550
|
-
- spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
|
3551
|
-
- spec/search_builders/hyrax/work_relation_spec.rb
|
3552
|
-
- spec/search_builders/hyrax/work_search_builder_spec.rb
|
3553
|
-
- spec/search_builders/hyrax/works_search_builder_spec.rb
|
3554
|
-
- spec/services/hyrax/abstract_message_service_spec.rb
|
3555
|
-
- spec/services/hyrax/adapters/nesting_index_adapter_spec.rb
|
3556
|
-
- spec/services/hyrax/admin_set_create_service_spec.rb
|
3557
|
-
- spec/services/hyrax/admin_set_member_service_spec.rb
|
3558
|
-
- spec/services/hyrax/admin_set_service_spec.rb
|
3559
|
-
- spec/services/hyrax/batch_create_failure_service_spec.rb
|
3560
|
-
- spec/services/hyrax/batch_create_success_service_spec.rb
|
3561
|
-
- spec/services/hyrax/change_content_depositor_service_spec.rb
|
3562
|
-
- spec/services/hyrax/collection_member_service_spec.rb
|
3563
|
-
- spec/services/hyrax/collection_size_service_spec.rb
|
3564
|
-
- spec/services/hyrax/collection_types/create_service_spec.rb
|
3565
|
-
- spec/services/hyrax/collection_types/permissions_service_spec.rb
|
3566
|
-
- spec/services/hyrax/collections/collection_member_service_spec.rb
|
3567
|
-
- spec/services/hyrax/collections/managed_collections_service_spec.rb
|
3568
|
-
- spec/services/hyrax/collections/migration_service_spec.rb
|
3569
|
-
- spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb
|
3570
|
-
- spec/services/hyrax/collections/nested_collection_query_service_spec.rb
|
3571
|
-
- spec/services/hyrax/collections/permissions_create_service_spec.rb
|
3572
|
-
- spec/services/hyrax/collections/permissions_service_spec.rb
|
3573
|
-
- spec/services/hyrax/collections_service_spec.rb
|
3574
|
-
- spec/services/hyrax/curation_concern_spec.rb
|
3575
|
-
- spec/services/hyrax/database_migrator_spec.rb
|
3576
|
-
- spec/services/hyrax/default_middleware_stack_spec.rb
|
3577
|
-
- spec/services/hyrax/derivative_path_spec.rb
|
3578
|
-
- spec/services/hyrax/derivative_service_spec.rb
|
3579
|
-
- spec/services/hyrax/embargo_service_spec.rb
|
3580
|
-
- spec/services/hyrax/file_set_csv_service_spec.rb
|
3581
|
-
- spec/services/hyrax/file_set_derivatives_service_spec.rb
|
3582
|
-
- spec/services/hyrax/file_set_fixity_check_service_spec.rb
|
3583
|
-
- spec/services/hyrax/fixity_check_failure_service_spec.rb
|
3584
|
-
- spec/services/hyrax/graph_exporter_spec.rb
|
3585
|
-
- spec/services/hyrax/iiif_authorization_service_spec.rb
|
3586
|
-
- spec/services/hyrax/import_url_failure_service_spec.rb
|
3587
|
-
- spec/services/hyrax/lease_service_spec.rb
|
3588
|
-
- spec/services/hyrax/license_service_spec.rb
|
3589
|
-
- spec/services/hyrax/lock_manager_spec.rb
|
3590
|
-
- spec/services/hyrax/messenger_service_spec.rb
|
3591
|
-
- spec/services/hyrax/microdata_spec.rb
|
3592
|
-
- spec/services/hyrax/multiple_membership_checker_spec.rb
|
3593
|
-
- spec/services/hyrax/noid_spec.rb
|
3594
|
-
- spec/services/hyrax/permission_template_applicator_spec.rb
|
3595
|
-
- spec/services/hyrax/persist_derivatives_spec.rb
|
3596
|
-
- spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb
|
3597
|
-
- spec/services/hyrax/qa_select_service_spec.rb
|
3598
|
-
- spec/services/hyrax/quick_classification_query_spec.rb
|
3599
|
-
- spec/services/hyrax/repository_fixity_check_service_spec.rb
|
3600
|
-
- spec/services/hyrax/resource_types_service_spec.rb
|
3601
|
-
- spec/services/hyrax/rights_statement_service_spec.rb
|
3602
|
-
- spec/services/hyrax/statistics/collections/over_time_spec.rb
|
3603
|
-
- spec/services/hyrax/statistics/depositors/summary_spec.rb
|
3604
|
-
- spec/services/hyrax/statistics/file_sets/by_format_spec.rb
|
3605
|
-
- spec/services/hyrax/statistics/query_service_spec.rb
|
3606
|
-
- spec/services/hyrax/statistics/system_stats_spec.rb
|
3607
|
-
- spec/services/hyrax/statistics/users/over_time_spec.rb
|
3608
|
-
- spec/services/hyrax/statistics/works/by_depositor_spec.rb
|
3609
|
-
- spec/services/hyrax/statistics/works/by_resource_type_spec.rb
|
3610
|
-
- spec/services/hyrax/statistics/works/count_spec.rb
|
3611
|
-
- spec/services/hyrax/statistics/works/over_time_spec.rb
|
3612
|
-
- spec/services/hyrax/thumbnail_path_service_spec.rb
|
3613
|
-
- spec/services/hyrax/tolerant_select_service_spec.rb
|
3614
|
-
- spec/services/hyrax/user_stat_importer_spec.rb
|
3615
|
-
- spec/services/hyrax/versioning_service_spec.rb
|
3616
|
-
- spec/services/hyrax/work_query_service_spec.rb
|
3617
|
-
- spec/services/hyrax/workflow/action_taken_service_spec.rb
|
3618
|
-
- spec/services/hyrax/workflow/activate_object_spec.rb
|
3619
|
-
- spec/services/hyrax/workflow/changes_required_notification_spec.rb
|
3620
|
-
- spec/services/hyrax/workflow/deactivate_object_spec.rb
|
3621
|
-
- spec/services/hyrax/workflow/deposited_notification_spec.rb
|
3622
|
-
- spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
|
3623
|
-
- spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
|
3624
|
-
- spec/services/hyrax/workflow/method_generator_spec.rb
|
3625
|
-
- spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
|
3626
|
-
- spec/services/hyrax/workflow/notification_generator_spec.rb
|
3627
|
-
- spec/services/hyrax/workflow/notification_service_spec.rb
|
3628
|
-
- spec/services/hyrax/workflow/pending_review_notification_spec.rb
|
3629
|
-
- spec/services/hyrax/workflow/permission_generator_spec.rb
|
3630
|
-
- spec/services/hyrax/workflow/permission_query_spec.rb
|
3631
|
-
- spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb
|
3632
|
-
- spec/services/hyrax/workflow/sipity_actions_generator_spec.rb
|
3633
|
-
- spec/services/hyrax/workflow/state_machine_generator_spec.rb
|
3634
|
-
- spec/services/hyrax/workflow/status_list_service_spec.rb
|
3635
|
-
- spec/services/hyrax/workflow/workflow_factory_spec.rb
|
3636
|
-
- spec/services/hyrax/workflow/workflow_importer_spec.rb
|
3637
|
-
- spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb
|
3638
|
-
- spec/services/hyrax/workflow/workflow_schema_spec.rb
|
3639
|
-
- spec/services/hyrax/working_directory_spec.rb
|
3640
|
-
- spec/services/hyrax/works/managed_works_service_spec.rb
|
3641
|
-
- spec/spec_helper.rb
|
3642
|
-
- spec/strategies/hyrax/strategies/yaml_strategy_spec.rb
|
3643
|
-
- spec/support/controller_level_helpers.rb
|
3644
|
-
- spec/support/factory_helpers.rb
|
3645
|
-
- spec/support/fakes/fake_authority.rb
|
3646
|
-
- spec/support/features.rb
|
3647
|
-
- spec/support/features/batch_edit_actions.rb
|
3648
|
-
- spec/support/features/session_helpers.rb
|
3649
|
-
- spec/support/features/workflow.rb
|
3650
|
-
- spec/support/input_support.rb
|
3651
|
-
- spec/support/logging_formatter.rb
|
3652
|
-
- spec/support/matchers/api_responses.rb
|
3653
|
-
- spec/support/matchers/collection_type_property_matchers.rb
|
3654
|
-
- spec/support/matchers/response_matchers.rb
|
3655
|
-
- spec/support/optional_example.rb
|
3656
|
-
- spec/support/rake.rb
|
3657
|
-
- spec/support/selectors.rb
|
3658
|
-
- spec/support/spec_statistic.rb
|
3659
|
-
- spec/support/speedup.rb
|
3660
|
-
- spec/support/statistic_helper.rb
|
3661
|
-
- spec/tasks/rake_spec.rb
|
3662
|
-
- spec/test_app_templates/Gemfile.extra
|
3663
|
-
- spec/test_app_templates/disable_animations_in_test_environment.rb
|
3664
|
-
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
3665
|
-
- spec/views/_flash_msg.html.erb_spec.rb
|
3666
|
-
- spec/views/_user_util_links.html.erb_spec.rb
|
3667
|
-
- spec/views/catalog/_index_list_default.html.erb_spec.rb
|
3668
|
-
- spec/views/catalog/_search_form.html.erb_spec.rb
|
3669
|
-
- spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
|
3670
|
-
- spec/views/catalog/index.html.erb_spec.rb
|
3671
|
-
- spec/views/content_blocks/edit.html.erb_spec.rb
|
3672
|
-
- spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
|
3673
|
-
- spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
|
3674
|
-
- spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
|
3675
|
-
- spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb
|
3676
|
-
- spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb
|
3677
|
-
- spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb
|
3678
|
-
- spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
|
3679
|
-
- spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
|
3680
|
-
- spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
|
3681
|
-
- spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
|
3682
|
-
- spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
|
3683
|
-
- spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb
|
3684
|
-
- spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb
|
3685
|
-
- spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb
|
3686
|
-
- spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb
|
3687
|
-
- spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb
|
3688
|
-
- spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb
|
3689
|
-
- spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb
|
3690
|
-
- spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb
|
3691
|
-
- spec/views/hyrax/admin/features/index.html.erb_spec.rb
|
3692
|
-
- spec/views/hyrax/admin/stats/show.html.erb_spec.rb
|
3693
|
-
- spec/views/hyrax/admin/users/index.html.erb_spec.rb
|
3694
|
-
- spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb
|
3695
|
-
- spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb
|
3696
|
-
- spec/views/hyrax/base/_attributes.html.erb_spec.rb
|
3697
|
-
- spec/views/hyrax/base/_citations.html.erb_spec.rb
|
3698
|
-
- spec/views/hyrax/base/_form.html.erb_spec.rb
|
3699
|
-
- spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
|
3700
|
-
- spec/views/hyrax/base/_form_files.html.erb_spec.rb
|
3701
|
-
- spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
|
3702
|
-
- spec/views/hyrax/base/_form_progress.html.erb_spec.rb
|
3703
|
-
- spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
|
3704
|
-
- spec/views/hyrax/base/_form_rendering.html.erb_spec.rb
|
3705
|
-
- spec/views/hyrax/base/_items.html.erb_spec.rb
|
3706
|
-
- spec/views/hyrax/base/_member.html.erb_spec.rb
|
3707
|
-
- spec/views/hyrax/base/_relationships.html.erb_spec.rb
|
3708
|
-
- spec/views/hyrax/base/_show_actions.html.erb_spec.rb
|
3709
|
-
- spec/views/hyrax/base/_social_media.html.erb_spec.rb
|
3710
|
-
- spec/views/hyrax/base/edit.html.erb_spec.rb
|
3711
|
-
- spec/views/hyrax/base/file_manager.html.erb_spec.rb
|
3712
|
-
- spec/views/hyrax/base/show.html.erb_spec.rb
|
3713
|
-
- spec/views/hyrax/base/show.json.jbuilder_spec.rb
|
3714
|
-
- spec/views/hyrax/base/unauthorized.html.erb_spec.rb
|
3715
|
-
- spec/views/hyrax/base/unavailable.html.erb_spec.rb
|
3716
|
-
- spec/views/hyrax/batch_edits/check_all_spec.rb
|
3717
|
-
- spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
|
3718
|
-
- spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
|
3719
|
-
- spec/views/hyrax/citations/work.html.erb_spec.rb
|
3720
|
-
- spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
|
3721
|
-
- spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
|
3722
|
-
- spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
|
3723
|
-
- spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb
|
3724
|
-
- spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb
|
3725
|
-
- spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb
|
3726
|
-
- spec/views/hyrax/collections/show.html.erb_spec.rb
|
3727
|
-
- spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
|
3728
|
-
- spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb
|
3729
|
-
- spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
|
3730
|
-
- spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb
|
3731
|
-
- spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb
|
3732
|
-
- spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
|
3733
|
-
- spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
|
3734
|
-
- spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb
|
3735
|
-
- spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb
|
3736
|
-
- spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb
|
3737
|
-
- spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb
|
3738
|
-
- spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
|
3739
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
|
3740
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
|
3741
|
-
- spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
|
3742
|
-
- spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb
|
3743
|
-
- spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb
|
3744
|
-
- spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb
|
3745
|
-
- spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb
|
3746
|
-
- spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb
|
3747
|
-
- spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb
|
3748
|
-
- spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
|
3749
|
-
- spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
|
3750
|
-
- spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb
|
3751
|
-
- spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
|
3752
|
-
- spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb
|
3753
|
-
- spec/views/hyrax/dashboard/show_user_spec.rb
|
3754
|
-
- spec/views/hyrax/depositors/index.html.erb_spec.rb
|
3755
|
-
- spec/views/hyrax/embargoes/index.html.erb_spec.rb
|
3756
|
-
- spec/views/hyrax/file_sets/_actions.html.erb_spec.rb
|
3757
|
-
- spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
|
3758
|
-
- spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
|
3759
|
-
- spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
|
3760
|
-
- spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb
|
3761
|
-
- spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb
|
3762
|
-
- spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb
|
3763
|
-
- spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb
|
3764
|
-
- spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb
|
3765
|
-
- spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb
|
3766
|
-
- spec/views/hyrax/file_sets/show.html.erb_spec.rb
|
3767
|
-
- spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb
|
3768
|
-
- spec/views/hyrax/homepage/_announcement.html.erb_spec.rb
|
3769
|
-
- spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
|
3770
|
-
- spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
|
3771
|
-
- spec/views/hyrax/homepage/index.html.erb_spec.rb
|
3772
|
-
- spec/views/hyrax/leases/index.html.erb_spec.rb
|
3773
|
-
- spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb
|
3774
|
-
- spec/views/hyrax/my/_search_header.html.erb_spec.rb
|
3775
|
-
- spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
|
3776
|
-
- spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
|
3777
|
-
- spec/views/hyrax/my/collections/index.html.erb_spec.rb
|
3778
|
-
- spec/views/hyrax/my/facet.html.erb_spec.rb
|
3779
|
-
- spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
|
3780
|
-
- spec/views/hyrax/my/works/index.html.erb_spec.rb
|
3781
|
-
- spec/views/hyrax/permissions/confirm.html.erb_spec.rb
|
3782
|
-
- spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
|
3783
|
-
- spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
|
3784
|
-
- spec/views/hyrax/stats/file.html.erb_spec.rb
|
3785
|
-
- spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
|
3786
|
-
- spec/views/hyrax/users/_user_info.html.erb_spec.rb
|
3787
|
-
- spec/views/hyrax/users/index.html.erb_spec.rb
|
3788
|
-
- spec/views/hyrax/users/show.html.erb_spec.rb
|
3789
|
-
- spec/views/layouts/error.html.erb_spec.rb
|
3790
|
-
- spec/views/pages/edit.html.erb_spec.rb
|
3791
|
-
- spec/views/pages/show.html.erb_spec.rb
|
3792
|
-
- spec/views/records/edit_fields/_based_near.html.erb_spec.rb
|
3793
|
-
- spec/views/records/edit_fields/_description.html.erb_spec.rb
|
3794
|
-
- spec/views/records/edit_fields/_language.html.erb_spec.rb
|
3795
|
-
- spec/views/records/edit_fields/_subject.html.erb_spec.rb
|
3796
|
-
- spec/views/shared/select_work_type_modal.html.erb_spec.rb
|
2469
|
+
test_files: []
|