hyrax 2.9.6 → 3.0.0.pre.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.circleci/config.yml +117 -175
- data/.gitignore +0 -1
- data/.travis.yml +33 -0
- data/README.md +14 -9
- data/app/actors/hyrax/actors/add_to_work_actor.rb +4 -23
- data/app/actors/hyrax/actors/attach_members_actor.rb +2 -9
- data/app/actors/hyrax/actors/collections_membership_actor.rb +11 -10
- data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +1 -2
- data/app/actors/hyrax/actors/file_set_actor.rb +2 -2
- data/app/actors/hyrax/actors/transactional_request.rb +8 -8
- data/app/assets/javascripts/hyrax/autocomplete.es6 +0 -29
- data/app/assets/javascripts/hyrax/collections/editor.es6 +2 -12
- data/app/assets/javascripts/hyrax/editor.es6 +10 -9
- data/app/assets/javascripts/hyrax.js +0 -1
- data/app/assets/stylesheets/hyrax/_collections.scss +2 -16
- data/app/assets/stylesheets/hyrax/_featured.scss +4 -0
- data/app/assets/stylesheets/hyrax/_file-listing.scss +1 -2
- data/app/assets/stylesheets/hyrax/_forms.scss +0 -2
- data/app/assets/stylesheets/hyrax/_header.scss +1 -1
- data/app/assets/stylesheets/hyrax/_home-page.scss +13 -6
- data/app/assets/stylesheets/hyrax/_hyrax.scss +10 -10
- data/app/assets/stylesheets/hyrax/_login_signup.scss +20 -0
- data/app/assets/stylesheets/hyrax/_work-show.scss +42 -5
- data/app/controllers/concerns/hyrax/controller.rb +0 -14
- data/app/controllers/concerns/hyrax/local_file_downloads_controller_behavior.rb +1 -2
- data/app/controllers/concerns/hyrax/works_controller_behavior.rb +6 -19
- data/app/controllers/hyrax/batch_edits_controller.rb +0 -7
- data/app/controllers/hyrax/dashboard/collections_controller.rb +2 -13
- data/app/controllers/hyrax/depositors_controller.rb +6 -4
- data/app/controllers/hyrax/downloads_controller.rb +1 -10
- data/app/controllers/hyrax/file_sets_controller.rb +1 -6
- data/app/controllers/hyrax/single_use_links_controller.rb +6 -6
- data/app/controllers/hyrax/single_use_links_viewer_controller.rb +5 -5
- data/app/controllers/hyrax/users_controller.rb +1 -1
- data/app/forms/hyrax/forms/workflow_responsibility_form.rb +3 -3
- data/app/helpers/hyrax/hyrax_helper_behavior.rb +0 -1
- data/app/indexers/hyrax/collection_indexer.rb +3 -1
- data/app/indexers/hyrax/deep_indexing_service.rb +12 -21
- data/app/indexers/hyrax/file_set_indexer.rb +0 -11
- data/app/jobs/import_url_job.rb +16 -9
- data/app/jobs/ingest_local_file_job.rb +0 -4
- data/app/models/concerns/hyrax/ability.rb +1 -1
- data/app/models/concerns/hyrax/collection_behavior.rb +34 -8
- data/app/models/concerns/hyrax/solr_document/characterization.rb +2 -6
- data/app/models/concerns/hyrax/solr_document/metadata.rb +7 -9
- data/app/models/concerns/hyrax/solr_document_behavior.rb +0 -10
- data/app/models/concerns/hyrax/work_behavior.rb +0 -1
- data/app/models/hyrax/uploaded_file.rb +2 -0
- data/app/models/proxy_deposit_request.rb +12 -5
- data/app/models/single_use_link.rb +6 -3
- data/app/presenters/hyrax/collection_presenter.rb +1 -12
- data/app/presenters/hyrax/displays_image.rb +15 -41
- data/app/presenters/hyrax/file_set_presenter.rb +1 -6
- data/app/presenters/hyrax/member_presenter_factory.rb +7 -1
- data/app/presenters/hyrax/single_use_link_presenter.rb +2 -2
- data/app/search_builders/hyrax/catalog_search_builder.rb +28 -0
- 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/batch_create_failure_service.rb +2 -2
- data/app/services/hyrax/batch_create_success_service.rb +2 -2
- data/app/services/hyrax/collection_types/permissions_service.rb +3 -3
- data/app/services/hyrax/collections/permissions_service.rb +1 -1
- data/app/services/hyrax/contextual_path.rb +1 -1
- data/app/services/hyrax/database_migrator.rb +0 -2
- data/app/services/hyrax/default_middleware_stack.rb +2 -4
- data/app/services/hyrax/file_set_csv_service.rb +0 -1
- data/app/services/hyrax/file_set_fixity_check_service.rb +0 -7
- data/app/services/hyrax/fixity_check_failure_service.rb +2 -2
- data/app/services/hyrax/import_url_failure_service.rb +1 -1
- data/app/services/hyrax/versioning_service.rb +0 -9
- data/app/services/hyrax/workflow/changes_required_notification.rb +4 -2
- data/app/services/hyrax/workflow/deposited_notification.rb +3 -2
- data/app/services/hyrax/workflow/pending_review_notification.rb +4 -2
- data/app/services/hyrax/workflow/workflow_schema.rb +32 -92
- data/app/views/catalog/_search_form.html.erb +2 -2
- data/app/views/catalog/_thumbnail_list_collection.html.erb +2 -3
- data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +2 -2
- data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +57 -52
- data/app/views/hyrax/base/_attribute_rows.html.erb +1 -1
- data/app/views/hyrax/base/_form.html.erb +2 -2
- data/app/views/hyrax/base/_form_child_work_relationships.html.erb +1 -1
- data/app/views/hyrax/base/_form_progress.html.erb +0 -4
- data/app/views/hyrax/base/_form_visibility_error.html.erb +0 -2
- data/app/views/hyrax/base/_guts4form.html.erb +1 -7
- data/app/views/hyrax/base/_items.html.erb +1 -1
- data/app/views/hyrax/base/_metadata.html.erb +2 -3
- data/app/views/hyrax/base/_relationships.html.erb +1 -2
- data/app/views/hyrax/base/_show_actions.html.erb +28 -23
- data/app/views/hyrax/base/_work_button_row.html.erb +49 -0
- data/app/views/hyrax/base/_work_title.erb +13 -18
- data/app/views/hyrax/base/_work_type.html.erb +2 -2
- data/app/views/hyrax/base/show.html.erb +26 -12
- data/app/views/hyrax/batch_uploads/_form.html.erb +2 -2
- data/app/views/hyrax/dashboard/_sidebar.html.erb +1 -1
- data/app/views/hyrax/dashboard/collections/_form_share.html.erb +67 -69
- data/app/views/hyrax/file_sets/_single_use_link_rows.html.erb +1 -1
- data/app/views/hyrax/homepage/_home_content.html.erb +4 -4
- data/app/views/hyrax/homepage/index.html.erb +21 -23
- data/config/features.rb +0 -4
- data/config/locales/hyrax.de.yml +40 -0
- data/config/locales/hyrax.en.yml +41 -1
- data/config/locales/hyrax.es.yml +40 -0
- data/config/locales/hyrax.fr.yml +40 -0
- data/config/locales/hyrax.it.yml +40 -0
- data/config/locales/hyrax.pt-BR.yml +51 -11
- data/config/locales/hyrax.zh.yml +40 -0
- data/hyrax.gemspec +19 -18
- data/lib/generators/hyrax/install_generator.rb +1 -2
- data/lib/generators/hyrax/templates/catalog_controller.rb +0 -4
- data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +0 -5
- data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
- data/lib/generators/hyrax/templates/db/migrate/20180612002029_update_single_use_links_column_names.rb.erb +6 -0
- data/lib/generators/hyrax/templates/hyrax.scss +1 -0
- data/lib/hyrax/configuration.rb +5 -27
- data/lib/hyrax/engine.rb +0 -1
- data/lib/hyrax/rails/routes.rb +0 -5
- data/lib/hyrax/specs/shared_specs.rb +0 -1
- data/lib/hyrax/version.rb +1 -1
- data/lib/hyrax.rb +0 -3
- data/spec/.gitignore +1 -0
- data/spec/abilities/ability_spec.rb +183 -0
- data/spec/abilities/admin_ability_spec.rb +18 -0
- data/spec/abilities/admin_set_ability_spec.rb +177 -0
- data/spec/abilities/collection_ability_spec.rb +194 -0
- data/spec/abilities/collection_type_ability_spec.rb +72 -0
- data/spec/abilities/embargo_and_lease_ability_spec.rb +22 -0
- data/spec/abilities/file_set_abilities_spec.rb +70 -0
- data/spec/abilities/generic_work_abilities_spec.rb +63 -0
- data/spec/abilities/operation_ability_spec.rb +12 -0
- data/spec/abilities/permission_template_ability_spec.rb +145 -0
- data/spec/abilities/proxies_and_transfer_abilities_spec.rb +109 -0
- data/spec/abilities/solr_document_ability_spec.rb +27 -0
- data/spec/actors/hyrax/actors/apply_order_actor_spec.rb +92 -0
- data/spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb +135 -0
- data/spec/actors/hyrax/actors/attach_members_actor_spec.rb +68 -0
- data/spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb +24 -0
- data/spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb +25 -0
- data/spec/actors/hyrax/actors/collections_membership_actor_spec.rb +364 -0
- data/spec/actors/hyrax/actors/create_with_files_actor_spec.rb +60 -0
- data/spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb +41 -0
- data/spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb +122 -0
- data/spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb +49 -0
- data/spec/actors/hyrax/actors/default_admin_set_actor_spec.rb +81 -0
- data/spec/actors/hyrax/actors/embargo_actor_spec.rb +37 -0
- data/spec/actors/hyrax/actors/featured_work_actor_spec.rb +38 -0
- data/spec/actors/hyrax/actors/file_actor_spec.rb +125 -0
- data/spec/actors/hyrax/actors/file_set_actor_spec.rb +347 -0
- data/spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb +35 -0
- data/spec/actors/hyrax/actors/generic_work_actor_spec.rb +316 -0
- data/spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb +35 -0
- data/spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb +445 -0
- data/spec/actors/hyrax/actors/lease_actor_spec.rb +54 -0
- data/spec/actors/hyrax/actors/model_actor_spec.rb +24 -0
- data/spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb +55 -0
- data/spec/actors/hyrax/actors/ordered_members_actor_spec.rb +59 -0
- data/spec/actors/hyrax/actors/transactional_request_spec.rb +44 -0
- data/spec/actors/hyrax/actors/transfer_request_actor_spec.rb +43 -0
- data/spec/authorities/qa/authorities/collections_spec.rb +68 -0
- data/spec/authorities/qa/authorities/find_works_spec.rb +52 -0
- data/spec/channels/hyrax/application_cable/channel_spec.rb +14 -0
- data/spec/channels/hyrax/application_cable/connection_spec.rb +37 -0
- data/spec/channels/hyrax/notifications_channel_spec.rb +45 -0
- data/spec/config/hyrax_events_spec.rb +44 -0
- data/spec/controllers/catalog_controller_spec.rb +135 -0
- data/spec/controllers/hyrax/accepts_batches_controller_spec.rb +67 -0
- data/spec/controllers/hyrax/admin/admin_sets_controller_spec.rb +284 -0
- data/spec/controllers/hyrax/admin/appearances_controller_spec.rb +66 -0
- data/spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb +152 -0
- data/spec/controllers/hyrax/admin/collection_types_controller_spec.rb +322 -0
- data/spec/controllers/hyrax/admin/features_controller_spec.rb +31 -0
- data/spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb +101 -0
- data/spec/controllers/hyrax/admin/permission_templates_controller_spec.rb +71 -0
- data/spec/controllers/hyrax/admin/stats_controller_spec.rb +61 -0
- data/spec/controllers/hyrax/admin/strategies_controller_spec.rb +39 -0
- data/spec/controllers/hyrax/admin/users_controller_spec.rb +17 -0
- data/spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb +76 -0
- data/spec/controllers/hyrax/admin/workflows_controller_spec.rb +18 -0
- data/spec/controllers/hyrax/api/items_controller_spec.rb +404 -0
- data/spec/controllers/hyrax/api/zotero_controller_spec.rb +162 -0
- data/spec/controllers/hyrax/batch_edits_controller_spec.rb +232 -0
- data/spec/controllers/hyrax/batch_uploads_controller_spec.rb +131 -0
- data/spec/controllers/hyrax/citations_controller_spec.rb +61 -0
- data/spec/controllers/hyrax/collections_controller_spec.rb +126 -0
- data/spec/controllers/hyrax/contact_form_controller_spec.rb +96 -0
- data/spec/controllers/hyrax/content_blocks_controller_spec.rb +71 -0
- data/spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb +408 -0
- data/spec/controllers/hyrax/dashboard/collections_controller_spec.rb +475 -0
- data/spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb +360 -0
- data/spec/controllers/hyrax/dashboard/profiles_controller_spec.rb +155 -0
- data/spec/controllers/hyrax/dashboard/works_controller_spec.rb +13 -0
- data/spec/controllers/hyrax/dashboard_controller_spec.rb +42 -0
- data/spec/controllers/hyrax/depositors_controller_spec.rb +109 -0
- data/spec/controllers/hyrax/downloads_controller_spec.rb +145 -0
- data/spec/controllers/hyrax/embargoes_controller_spec.rb +147 -0
- data/spec/controllers/hyrax/featured_work_lists_controller_spec.rb +20 -0
- data/spec/controllers/hyrax/featured_works_controller_spec.rb +56 -0
- data/spec/controllers/hyrax/file_sets_controller_spec.rb +322 -0
- data/spec/controllers/hyrax/fixity_checks_controller_spec.rb +44 -0
- data/spec/controllers/hyrax/generic_works_controller_json_spec.rb +92 -0
- data/spec/controllers/hyrax/generic_works_controller_spec.rb +622 -0
- data/spec/controllers/hyrax/homepage_controller_spec.rb +138 -0
- data/spec/controllers/hyrax/leases_controller_spec.rb +117 -0
- data/spec/controllers/hyrax/my/collections_controller_spec.rb +36 -0
- data/spec/controllers/hyrax/my/highlights_controller_spec.rb +53 -0
- data/spec/controllers/hyrax/my/shares_controller_spec.rb +47 -0
- data/spec/controllers/hyrax/my/works_controller_spec.rb +54 -0
- data/spec/controllers/hyrax/notifications_controller_spec.rb +33 -0
- data/spec/controllers/hyrax/operations_controller_spec.rb +27 -0
- data/spec/controllers/hyrax/pages_controller_spec.rb +111 -0
- data/spec/controllers/hyrax/permissions_controller_spec.rb +56 -0
- data/spec/controllers/hyrax/resource_sync_controller_spec.rb +71 -0
- data/spec/controllers/hyrax/single_use_links_controller_spec.rb +100 -0
- data/spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb +64 -0
- data/spec/controllers/hyrax/static_controller_spec.rb +28 -0
- data/spec/controllers/hyrax/stats_controller_spec.rb +73 -0
- data/spec/controllers/hyrax/transfers_controller_spec.rb +200 -0
- data/spec/controllers/hyrax/trophies_controller_spec.rb +40 -0
- data/spec/controllers/hyrax/uploads_controller_spec.rb +60 -0
- data/spec/controllers/hyrax/users_controller_spec.rb +151 -0
- data/spec/controllers/hyrax/workflow_actions_controller_spec.rb +54 -0
- data/spec/conversions/power_converters/polymorphic_type_spec.rb +22 -0
- data/spec/conversions/power_converters/sipity_action_name_spec.rb +32 -0
- data/spec/conversions/power_converters/sipity_action_spec.rb +43 -0
- data/spec/conversions/power_converters/sipity_agent_spec.rb +20 -0
- data/spec/conversions/power_converters/sipity_entity_spec.rb +53 -0
- data/spec/conversions/power_converters/sipity_role_spec.rb +31 -0
- data/spec/conversions/power_converters/sipity_workflow_id_spec.rb +28 -0
- data/spec/conversions/power_converters/sipity_workflow_state_spec.rb +20 -0
- data/spec/factories/admin_sets.rb +25 -0
- data/spec/factories/admin_sets_lw.rb +215 -0
- data/spec/factories/api_items.rb +91 -0
- data/spec/factories/collection_branding_infos.rb +11 -0
- data/spec/factories/collection_type_participants.rb +8 -0
- data/spec/factories/collection_types.rb +113 -0
- data/spec/factories/collections.rb +325 -0
- data/spec/factories/collections_factory.rb +134 -0
- data/spec/factories/content_blocks.rb +4 -0
- data/spec/factories/featured_works.rb +4 -0
- data/spec/factories/file_sets.rb +33 -0
- data/spec/factories/generic_works.rb +196 -0
- data/spec/factories/object_id.rb +6 -0
- data/spec/factories/operations.rb +21 -0
- data/spec/factories/permission_template_accesses.rb +16 -0
- data/spec/factories/permission_templates.rb +79 -0
- data/spec/factories/proxy_deposit_requests.rb +6 -0
- data/spec/factories/single_use_links.rb +13 -0
- data/spec/factories/sipity_entities.rb +7 -0
- data/spec/factories/uploaded_files.rb +5 -0
- data/spec/factories/users.rb +59 -0
- data/spec/factories/workflow_actions.rb +6 -0
- data/spec/factories/workflow_states.rb +6 -0
- data/spec/factories/workflows.rb +6 -0
- data/spec/factory_tests/adminsets_factory_spec.rb +132 -0
- data/spec/factory_tests/collections_factory_spec.rb +212 -0
- data/spec/features/admin_spec.rb +30 -0
- data/spec/features/batch_create_spec.rb +75 -0
- data/spec/features/batch_edit_spec.rb +119 -0
- data/spec/features/browse_catalog_spec.rb +59 -0
- data/spec/features/browse_dashboard_works_spec.rb +56 -0
- data/spec/features/catalog_search_spec.rb +72 -0
- data/spec/features/collection_multi_membership_spec.rb +205 -0
- data/spec/features/collection_spec.rb +122 -0
- data/spec/features/collection_type_spec.rb +393 -0
- data/spec/features/contact_form_spec.rb +16 -0
- data/spec/features/create_child_work_spec.rb +82 -0
- data/spec/features/create_work_admin_spec.rb +44 -0
- data/spec/features/create_work_spec.rb +124 -0
- data/spec/features/dashboard/all_works.rb +23 -0
- data/spec/features/dashboard/collection_spec.rb +918 -0
- data/spec/features/dashboard/display_admin_dashboard_spec.rb +29 -0
- data/spec/features/dashboard/display_dashboard_spec.rb +18 -0
- data/spec/features/delete_work_spec.rb +23 -0
- data/spec/features/edit_content_block_admin_spec.rb +62 -0
- data/spec/features/edit_file_spec.rb +23 -0
- data/spec/features/edit_work_spec.rb +61 -0
- data/spec/features/embargo_spec.rb +90 -0
- data/spec/features/homepage_spec.rb +43 -0
- data/spec/features/lease_spec.rb +35 -0
- data/spec/features/notifications_spec.rb +20 -0
- data/spec/features/ownership_transfer_spec.rb +101 -0
- data/spec/features/proxy_spec.rb +25 -0
- data/spec/features/search_spec.rb +62 -0
- data/spec/features/static_pages_spec.rb +7 -0
- data/spec/features/users_spec.rb +48 -0
- data/spec/features/work_generator_spec.rb +29 -0
- data/spec/features/work_show_spec.rb +145 -0
- data/spec/features/workflow_roles_spec.rb +46 -0
- data/spec/features/workflow_state_changes_spec.rb +59 -0
- 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 +13 -0
- data/spec/fixtures/charter.docx +0 -0
- data/spec/fixtures/config/schema_org.yml +7 -0
- data/spec/fixtures/config/schema_org_second.yml +7 -0
- data/spec/fixtures/countdown.avi +0 -0
- data/spec/fixtures/docx_fits.xml +21 -0
- data/spec/fixtures/dublin_core_rdf_descMetadata.nt +13 -0
- data/spec/fixtures/hyrax/.gitignore +1 -0
- 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 +1 -0
- 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 +36 -0
- data/spec/fixtures/jpg_fits.xml +43 -0
- data/spec/fixtures/mp3_fits.xml +32 -0
- data/spec/fixtures/pdf_fits.xml +43 -0
- data/spec/fixtures/piano_note.wav +0 -0
- data/spec/fixtures/png_fits.xml +29 -0
- data/spec/fixtures/sample_mpeg4.mp4 +0 -0
- data/spec/fixtures/small_file.txt +1 -0
- data/spec/fixtures/spoken-text.m4a +0 -0
- data/spec/fixtures/txt_fits.xml +29 -0
- data/spec/fixtures/world.png +0 -0
- data/spec/fixtures/xls_fits.xml +18 -0
- data/spec/fixtures/xml_fits.xml +37 -0
- data/spec/forms/hyrax/forms/admin/appearance_spec.rb +46 -0
- data/spec/forms/hyrax/forms/admin/collection_type_form_spec.rb +108 -0
- data/spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb +10 -0
- data/spec/forms/hyrax/forms/admin_set_form_spec.rb +88 -0
- data/spec/forms/hyrax/forms/batch_edit_form_spec.rb +111 -0
- data/spec/forms/hyrax/forms/batch_upload_form_spec.rb +75 -0
- data/spec/forms/hyrax/forms/collection_form_spec.rb +196 -0
- data/spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb +159 -0
- data/spec/forms/hyrax/forms/file_manager_form_spec.rb +19 -0
- data/spec/forms/hyrax/forms/file_set_edit_form_spec.rb +53 -0
- data/spec/forms/hyrax/forms/permission_template_form_spec.rb +599 -0
- data/spec/forms/hyrax/forms/work_form_spec.rb +346 -0
- data/spec/forms/hyrax/forms/workflow_action_form_spec.rb +129 -0
- data/spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb +41 -0
- data/spec/forms/hyrax/generic_work_form_spec.rb +127 -0
- data/spec/helpers/blacklight_helper_spec.rb +137 -0
- data/spec/helpers/hyrax/ability_helper_spec.rb +61 -0
- data/spec/helpers/hyrax/batch_edits_helper_spec.rb +59 -0
- data/spec/helpers/hyrax/charts_helper_spec.rb +63 -0
- data/spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb +10 -0
- data/spec/helpers/hyrax/collections_helper_spec.rb +117 -0
- data/spec/helpers/hyrax/content_block_helper_spec.rb +44 -0
- data/spec/helpers/hyrax/dashboard_helper_behavior_spec.rb +74 -0
- data/spec/helpers/hyrax/file_set_helper_spec.rb +65 -0
- data/spec/helpers/hyrax/iiif_helper_spec.rb +44 -0
- data/spec/helpers/hyrax/trophy_helper_spec.rb +37 -0
- data/spec/helpers/hyrax_helper_spec.rb +399 -0
- data/spec/hyrax/transactions/create_work_spec.rb +155 -0
- data/spec/hyrax/transactions/steps/apply_permission_template_spec.rb +72 -0
- data/spec/hyrax/transactions/steps/ensure_admin_set_spec.rb +25 -0
- data/spec/hyrax/transactions/steps/ensure_permission_template_spec.rb +33 -0
- data/spec/hyrax/transactions/steps/save_work_spec.rb +32 -0
- data/spec/hyrax/transactions/steps/set_default_admin_set_spec.rb +38 -0
- data/spec/hyrax/transactions/steps/set_modified_date_spec.rb +22 -0
- data/spec/hyrax/transactions/steps/set_uploaded_date_spec.rb +32 -0
- data/spec/indexers/hyrax/collection_indexer_spec.rb +43 -0
- data/spec/indexers/hyrax/file_set_indexer_spec.rb +125 -0
- data/spec/indexers/hyrax/generic_work_indexer_spec.rb +123 -0
- data/spec/indexers/hyrax/repository_reindexer_spec.rb +8 -0
- data/spec/inputs/controlled_vocabulary_input_spec.rb +57 -0
- data/spec/inputs/multifile_input_spec.rb +31 -0
- data/spec/javascripts/authority_select_spec.js +22 -0
- data/spec/javascripts/autocomplete_spec.js.coffee +199 -0
- data/spec/javascripts/batch_select_spec.js +15 -0
- data/spec/javascripts/charts_spec.coffee +10 -0
- data/spec/javascripts/checklist_item_spec.js +23 -0
- data/spec/javascripts/deposit_agreement_spec.js +70 -0
- data/spec/javascripts/file_manager_member_spec.coffee +88 -0
- data/spec/javascripts/file_manager_sorting_spec.coffee +23 -0
- data/spec/javascripts/fixtures/chart_example.html +1 -0
- data/spec/javascripts/fixtures/dashboard_batch_forms.html +11 -0
- data/spec/javascripts/fixtures/file_manager_member.html +40 -0
- data/spec/javascripts/fixtures/save_button.html +3 -0
- data/spec/javascripts/fixtures/sortable.html +182 -0
- data/spec/javascripts/fixtures/sul_table.html +29 -0
- data/spec/javascripts/grant_spec.js +43 -0
- data/spec/javascripts/helpers/jasmine-ajax.js +751 -0
- data/spec/javascripts/helpers/jasmine-jquery.js +838 -0
- data/spec/javascripts/helpers/test_fixtures.js.coffee +18 -0
- data/spec/javascripts/helpers/test_responses.js +12 -0
- data/spec/javascripts/jasmine_spec.rb +25 -0
- data/spec/javascripts/relationships_control_spec.js.coffee +27 -0
- data/spec/javascripts/required_field_spec.js +41 -0
- data/spec/javascripts/save_manager_spec.coffee +87 -0
- data/spec/javascripts/save_work_spec.js +262 -0
- data/spec/javascripts/settings_spec.js +74 -0
- data/spec/javascripts/single_use_links_spec.coffee +51 -0
- data/spec/javascripts/support/jasmine.yml +125 -0
- data/spec/javascripts/support/jasmine_helper.rb +14 -0
- data/spec/javascripts/tabs_spec.js.coffee +38 -0
- data/spec/javascripts/uploaded_files_spec.js +23 -0
- data/spec/javascripts/visibility_component_spec.js +531 -0
- data/spec/jobs/attach_files_to_work_job_spec.rb +80 -0
- data/spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb +13 -0
- data/spec/jobs/batch_create_job_spec.rb +79 -0
- data/spec/jobs/characterize_job_spec.rb +66 -0
- data/spec/jobs/content_delete_event_job_spec.rb +36 -0
- data/spec/jobs/content_deposit_event_job_spec.rb +25 -0
- data/spec/jobs/content_depositor_change_event_job_spec.rb +28 -0
- data/spec/jobs/content_new_version_event_job_spec.rb +21 -0
- data/spec/jobs/content_restored_version_event_job_spec.rb +28 -0
- data/spec/jobs/content_update_event_job_spec.rb +25 -0
- data/spec/jobs/create_derivatives_job_spec.rb +93 -0
- data/spec/jobs/create_work_job_spec.rb +60 -0
- data/spec/jobs/file_set_attached_event_job_spec.rb +34 -0
- data/spec/jobs/fixity_check_job_spec.rb +50 -0
- data/spec/jobs/hyrax/grant_edit_job_spec.rb +11 -0
- data/spec/jobs/hyrax/grant_edit_to_members_job_spec.rb +16 -0
- data/spec/jobs/hyrax/grant_read_job_spec.rb +11 -0
- data/spec/jobs/hyrax/grant_read_to_members_job_spec.rb +16 -0
- data/spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb +16 -0
- data/spec/jobs/hyrax/revoke_edit_job_spec.rb +11 -0
- data/spec/jobs/import_export_job_spec.rb +28 -0
- data/spec/jobs/import_url_job_spec.rb +133 -0
- data/spec/jobs/ingest_local_file_job_spec.rb +16 -0
- data/spec/jobs/inherit_permissions_job_spec.rb +94 -0
- data/spec/jobs/stream_notifications_job_spec.rb +45 -0
- data/spec/jobs/user_edit_profile_event_job_spec.rb +17 -0
- data/spec/jobs/visibility_copy_job_spec.rb +53 -0
- data/spec/lib/hyrax/analytics_spec.rb +65 -0
- data/spec/lib/hyrax/arkivo/actor_spec.rb +78 -0
- data/spec/lib/hyrax/arkivo/create_subscription_job_spec.rb +50 -0
- data/spec/lib/hyrax/arkivo/metadata_munger_spec.rb +46 -0
- data/spec/lib/hyrax/arkivo/schema_validator_spec.rb +63 -0
- data/spec/lib/hyrax/arkivo_spec.rb +12 -0
- data/spec/lib/hyrax/collections/search_service_spec.rb +35 -0
- data/spec/lib/hyrax/configuration_spec.rb +85 -0
- data/spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb +33 -0
- data/spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb +24 -0
- data/spec/lib/hyrax/move_all_works_to_admin_set_spec.rb +13 -0
- data/spec/lib/hyrax/name_spec.rb +21 -0
- data/spec/lib/hyrax/redis_event_store_spec.rb +54 -0
- data/spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb +33 -0
- data/spec/lib/hyrax/resource_sync/change_list_writer_spec.rb +64 -0
- data/spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb +25 -0
- data/spec/lib/hyrax/resource_sync/source_description_writer_spec.rb +18 -0
- data/spec/lib/hyrax/role_registry_spec.rb +43 -0
- data/spec/lib/hyrax/search_state_spec.rb +26 -0
- data/spec/lib/hyrax/zotero/config_spec.rb +26 -0
- data/spec/lib/hyrax/zotero_spec.rb +9 -0
- data/spec/lib/hyrax_spec.rb +9 -0
- data/spec/models/admin_set_spec.rb +229 -0
- data/spec/models/batch_upload_item_spec.rb +7 -0
- data/spec/models/checksum_audit_log_spec.rb +162 -0
- data/spec/models/collection_branding_info_spec.rb +61 -0
- data/spec/models/collection_spec.rb +326 -0
- data/spec/models/concerns/hyrax/collection_nesting_spec.rb +83 -0
- data/spec/models/content_block_spec.rb +198 -0
- data/spec/models/featured_work_list_spec.rb +56 -0
- data/spec/models/featured_work_spec.rb +53 -0
- data/spec/models/file_download_stat_spec.rb +104 -0
- data/spec/models/file_set_spec.rb +668 -0
- data/spec/models/file_view_stat_spec.rb +81 -0
- data/spec/models/flipflop_spec.rb +49 -0
- data/spec/models/generic_work_spec.rb +117 -0
- data/spec/models/hyrax/batch_create_operation_spec.rb +59 -0
- data/spec/models/hyrax/collection_type_participant_spec.rb +43 -0
- data/spec/models/hyrax/collection_type_spec.rb +236 -0
- data/spec/models/hyrax/download_spec.rb +13 -0
- data/spec/models/hyrax/operation_spec.rb +123 -0
- data/spec/models/hyrax/pageview_spec.rb +13 -0
- data/spec/models/hyrax/permission_template_access_spec.rb +180 -0
- data/spec/models/hyrax/permission_template_spec.rb +291 -0
- data/spec/models/hyrax/permissions/readable_permissions_spec.rb +52 -0
- data/spec/models/hyrax/permissions/writable_permissions_spec.rb +12 -0
- data/spec/models/hyrax/uploaded_file_spec.rb +10 -0
- data/spec/models/hyrax/user_usage_stats_spec.rb +43 -0
- data/spec/models/hyrax/work_behavior_spec.rb +63 -0
- data/spec/models/job_io_wrapper_spec.rb +172 -0
- data/spec/models/proxy_deposit_request_spec.rb +170 -0
- data/spec/models/single_use_link_spec.rb +51 -0
- data/spec/models/sipity/agent_spec.rb +8 -0
- data/spec/models/sipity/comment_spec.rb +24 -0
- data/spec/models/sipity/entity_spec.rb +27 -0
- data/spec/models/sipity/entity_specific_responsibility_spec.rb +9 -0
- data/spec/models/sipity/notifiable_context_spec.rb +7 -0
- data/spec/models/sipity/notification_recipient_spec.rb +9 -0
- data/spec/models/sipity/notification_spec.rb +15 -0
- data/spec/models/sipity/role_spec.rb +40 -0
- data/spec/models/sipity/workflow_action_spec.rb +11 -0
- data/spec/models/sipity/workflow_responsibility_spec.rb +8 -0
- data/spec/models/sipity/workflow_role_spec.rb +8 -0
- data/spec/models/sipity/workflow_spec.rb +84 -0
- data/spec/models/sipity/workflow_state_action_permission_spec.rb +8 -0
- data/spec/models/sipity/workflow_state_action_spec.rb +8 -0
- data/spec/models/sipity/workflow_state_spec.rb +17 -0
- data/spec/models/solr_document_spec.rb +205 -0
- data/spec/models/trophy_spec.rb +19 -0
- data/spec/models/user_mailbox_spec.rb +134 -0
- data/spec/models/user_spec.rb +269 -0
- data/spec/models/work_view_stat_spec.rb +107 -0
- data/spec/presenters/hyrax/admin/dashboard_presenter_spec.rb +33 -0
- data/spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb +25 -0
- data/spec/presenters/hyrax/admin/repository_object_presenter_spec.rb +24 -0
- data/spec/presenters/hyrax/admin/user_activity_presenter_spec.rb +20 -0
- data/spec/presenters/hyrax/admin/users_presenter_spec.rb +48 -0
- data/spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb +12 -0
- data/spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb +16 -0
- data/spec/presenters/hyrax/admin_set_options_presenter_spec.rb +73 -0
- data/spec/presenters/hyrax/admin_set_presenter_spec.rb +143 -0
- data/spec/presenters/hyrax/admin_stats_presenter_spec.rb +143 -0
- data/spec/presenters/hyrax/collection_options_presenter_spec.rb +15 -0
- data/spec/presenters/hyrax/collection_presenter_spec.rb +461 -0
- data/spec/presenters/hyrax/dashboard/user_presenter_spec.rb +65 -0
- data/spec/presenters/hyrax/embargo_presenter_spec.rb +51 -0
- data/spec/presenters/hyrax/file_set_presenter_spec.rb +426 -0
- data/spec/presenters/hyrax/file_usage_spec.rb +162 -0
- data/spec/presenters/hyrax/fixity_status_presenter_spec.rb +55 -0
- data/spec/presenters/hyrax/homepage_presenter_spec.rb +42 -0
- data/spec/presenters/hyrax/inspect_work_presenter_spec.rb +59 -0
- data/spec/presenters/hyrax/lease_presenter_spec.rb +51 -0
- data/spec/presenters/hyrax/member_presenter_factory_spec.rb +26 -0
- data/spec/presenters/hyrax/menu_presenter_spec.rb +107 -0
- data/spec/presenters/hyrax/permission_badge_spec.rb +77 -0
- data/spec/presenters/hyrax/presenter_factory_spec.rb +53 -0
- data/spec/presenters/hyrax/presenter_renderer_spec.rb +30 -0
- data/spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb +59 -0
- data/spec/presenters/hyrax/select_collection_type_presenter_spec.rb +10 -0
- data/spec/presenters/hyrax/select_type_list_presenter_spec.rb +37 -0
- data/spec/presenters/hyrax/select_type_presenter_spec.rb +74 -0
- data/spec/presenters/hyrax/single_use_link_presenter_spec.rb +41 -0
- data/spec/presenters/hyrax/transfers_presenter_spec.rb +44 -0
- data/spec/presenters/hyrax/trophy_presenter_spec.rb +53 -0
- data/spec/presenters/hyrax/twitter_presenter_spec.rb +27 -0
- data/spec/presenters/hyrax/user_profile_presenter_spec.rb +28 -0
- data/spec/presenters/hyrax/version_list_presenter_spec.rb +30 -0
- data/spec/presenters/hyrax/version_presenter_spec.rb +57 -0
- data/spec/presenters/hyrax/work_show_presenter_spec.rb +580 -0
- data/spec/presenters/hyrax/work_usage_spec.rb +144 -0
- data/spec/presenters/hyrax/workflow_presenter_spec.rb +75 -0
- data/spec/rails_helper.rb +2 -0
- data/spec/renderers/hyrax/renderers/attribute_renderer_spec.rb +118 -0
- data/spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb +39 -0
- data/spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb +22 -0
- data/spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb +35 -0
- data/spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb +21 -0
- data/spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb +21 -0
- data/spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb +29 -0
- data/spec/requests/legacy_routing_spec.rb +7 -0
- data/spec/requests/riiif_spec.rb +32 -0
- data/spec/routing/admin_routes_spec.rb +29 -0
- data/spec/routing/api_route_spec.rb +89 -0
- data/spec/routing/citations_route_spec.rb +21 -0
- data/spec/routing/collection_permission_templates_routes_spec.rb +31 -0
- data/spec/routing/collection_types_routes.rb +35 -0
- data/spec/routing/dashboard_routes_spec.rb +37 -0
- data/spec/routing/featured_works_route_spec.rb +15 -0
- data/spec/routing/operations_spec.rb +9 -0
- data/spec/routing/ownership_transfers_route_spec.rb +43 -0
- data/spec/routing/resource_sync_spec.rb +19 -0
- data/spec/routing/route_spec.rb +205 -0
- data/spec/routing/single_use_link_spec.rb +27 -0
- data/spec/routing/stats_route_spec.rb +21 -0
- data/spec/search_builders/hyrax/abstract_type_relation_spec.rb +18 -0
- data/spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb +39 -0
- data/spec/search_builders/hyrax/admin_set_search_builder_spec.rb +78 -0
- data/spec/search_builders/hyrax/catalog_search_builder_spec.rb +86 -0
- data/spec/search_builders/hyrax/collection_member_search_builder_spec.rb +53 -0
- data/spec/search_builders/hyrax/collection_search_builder_spec.rb +74 -0
- data/spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb +103 -0
- data/spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb +85 -0
- data/spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb +44 -0
- data/spec/search_builders/hyrax/embargo_search_builder_spec.rb +17 -0
- data/spec/search_builders/hyrax/file_set_search_builder_spec.rb +28 -0
- data/spec/search_builders/hyrax/lease_search_builder_spec.rb +17 -0
- data/spec/search_builders/hyrax/my/collections_search_builder_spec.rb +35 -0
- data/spec/search_builders/hyrax/my/find_works_search_builder_spec.rb +63 -0
- data/spec/search_builders/hyrax/my/shares_search_builder_spec.rb +32 -0
- data/spec/search_builders/hyrax/my/works_search_builder_spec.rb +52 -0
- data/spec/search_builders/hyrax/parent_collection_search_builder_spec.rb +15 -0
- data/spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb +20 -0
- data/spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb +32 -0
- data/spec/search_builders/hyrax/work_relation_spec.rb +9 -0
- data/spec/search_builders/hyrax/work_search_builder_spec.rb +106 -0
- data/spec/search_builders/hyrax/works_search_builder_spec.rb +23 -0
- data/spec/services/hyrax/abstract_message_service_spec.rb +25 -0
- data/spec/services/hyrax/adapters/nesting_index_adapter_spec.rb +205 -0
- data/spec/services/hyrax/admin_set_create_service_spec.rb +114 -0
- data/spec/services/hyrax/admin_set_member_service_spec.rb +21 -0
- data/spec/services/hyrax/admin_set_service_spec.rb +171 -0
- data/spec/services/hyrax/batch_create_failure_service_spec.rb +18 -0
- data/spec/services/hyrax/batch_create_success_service_spec.rb +15 -0
- data/spec/services/hyrax/change_content_depositor_service_spec.rb +49 -0
- data/spec/services/hyrax/collection_member_service_spec.rb +19 -0
- data/spec/services/hyrax/collection_types/create_service_spec.rb +127 -0
- data/spec/services/hyrax/collection_types/permissions_service_spec.rb +297 -0
- data/spec/services/hyrax/collections/collection_member_service_spec.rb +49 -0
- data/spec/services/hyrax/collections/managed_collections_service_spec.rb +17 -0
- data/spec/services/hyrax/collections/migration_service_spec.rb +467 -0
- data/spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb +28 -0
- data/spec/services/hyrax/collections/nested_collection_query_service_spec.rb +353 -0
- data/spec/services/hyrax/collections/permissions_create_service_spec.rb +64 -0
- data/spec/services/hyrax/collections/permissions_service_spec.rb +380 -0
- data/spec/services/hyrax/collections_service_spec.rb +62 -0
- data/spec/services/hyrax/curation_concern_spec.rb +18 -0
- data/spec/services/hyrax/database_migrator_spec.rb +20 -0
- data/spec/services/hyrax/default_middleware_stack_spec.rb +36 -0
- data/spec/services/hyrax/derivative_path_spec.rb +65 -0
- data/spec/services/hyrax/derivative_service_spec.rb +49 -0
- data/spec/services/hyrax/embargo_service_spec.rb +59 -0
- data/spec/services/hyrax/file_set_csv_service_spec.rb +83 -0
- data/spec/services/hyrax/file_set_derivatives_service_spec.rb +13 -0
- data/spec/services/hyrax/file_set_fixity_check_service_spec.rb +77 -0
- data/spec/services/hyrax/fixity_check_failure_service_spec.rb +30 -0
- data/spec/services/hyrax/graph_exporter_spec.rb +58 -0
- data/spec/services/hyrax/iiif_authorization_service_spec.rb +43 -0
- data/spec/services/hyrax/import_url_failure_service_spec.rb +23 -0
- data/spec/services/hyrax/lease_service_spec.rb +50 -0
- data/spec/services/hyrax/license_service_spec.rb +34 -0
- data/spec/services/hyrax/lock_manager_spec.rb +13 -0
- data/spec/services/hyrax/messenger_service_spec.rb +15 -0
- data/spec/services/hyrax/microdata_spec.rb +94 -0
- data/spec/services/hyrax/multiple_membership_checker_spec.rb +155 -0
- data/spec/services/hyrax/noid_spec.rb +37 -0
- data/spec/services/hyrax/permission_template_applicator_spec.rb +69 -0
- data/spec/services/hyrax/persist_derivatives_spec.rb +22 -0
- data/spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb +20 -0
- data/spec/services/hyrax/qa_select_service_spec.rb +109 -0
- data/spec/services/hyrax/quick_classification_query_spec.rb +38 -0
- data/spec/services/hyrax/repository_fixity_check_service_spec.rb +16 -0
- data/spec/services/hyrax/resource_types_service_spec.rb +38 -0
- data/spec/services/hyrax/rights_statement_service_spec.rb +9 -0
- data/spec/services/hyrax/statistics/collections/over_time_spec.rb +17 -0
- data/spec/services/hyrax/statistics/depositors/summary_spec.rb +66 -0
- data/spec/services/hyrax/statistics/file_sets/by_format_spec.rb +29 -0
- data/spec/services/hyrax/statistics/query_service_spec.rb +112 -0
- data/spec/services/hyrax/statistics/system_stats_spec.rb +45 -0
- data/spec/services/hyrax/statistics/users/over_time_spec.rb +22 -0
- data/spec/services/hyrax/statistics/works/by_depositor_spec.rb +24 -0
- data/spec/services/hyrax/statistics/works/by_resource_type_spec.rb +21 -0
- data/spec/services/hyrax/statistics/works/count_spec.rb +33 -0
- data/spec/services/hyrax/statistics/works/over_time_spec.rb +17 -0
- data/spec/services/hyrax/thumbnail_path_service_spec.rb +55 -0
- data/spec/services/hyrax/tolerant_select_service_spec.rb +80 -0
- data/spec/services/hyrax/user_stat_importer_spec.rb +315 -0
- data/spec/services/hyrax/versioning_service_spec.rb +26 -0
- data/spec/services/hyrax/work_query_service_spec.rb +56 -0
- data/spec/services/hyrax/workflow/action_taken_service_spec.rb +74 -0
- data/spec/services/hyrax/workflow/activate_object_spec.rb +26 -0
- data/spec/services/hyrax/workflow/changes_required_notification_spec.rb +35 -0
- data/spec/services/hyrax/workflow/deactivate_object_spec.rb +26 -0
- data/spec/services/hyrax/workflow/deposited_notification_spec.rb +35 -0
- data/spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb +53 -0
- data/spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb +48 -0
- data/spec/services/hyrax/workflow/method_generator_spec.rb +42 -0
- data/spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb +24 -0
- data/spec/services/hyrax/workflow/notification_generator_spec.rb +27 -0
- data/spec/services/hyrax/workflow/notification_service_spec.rb +87 -0
- data/spec/services/hyrax/workflow/pending_review_notification_spec.rb +34 -0
- data/spec/services/hyrax/workflow/permission_generator_spec.rb +50 -0
- data/spec/services/hyrax/workflow/permission_query_spec.rb +206 -0
- data/spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb +48 -0
- data/spec/services/hyrax/workflow/sipity_actions_generator_spec.rb +40 -0
- data/spec/services/hyrax/workflow/state_machine_generator_spec.rb +45 -0
- data/spec/services/hyrax/workflow/status_list_service_spec.rb +67 -0
- data/spec/services/hyrax/workflow/workflow_factory_spec.rb +26 -0
- data/spec/services/hyrax/workflow/workflow_importer_spec.rb +241 -0
- data/spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb +39 -0
- data/spec/services/hyrax/workflow/workflow_schema_spec.rb +86 -0
- data/spec/services/hyrax/working_directory_spec.rb +12 -0
- data/spec/services/hyrax/works/managed_works_service_spec.rb +17 -0
- data/spec/spec_helper.rb +294 -0
- data/spec/strategies/hyrax/strategies/yaml_strategy_spec.rb +30 -0
- data/spec/support/controller_level_helpers.rb +27 -0
- data/spec/support/factory_helpers.rb +24 -0
- data/spec/support/fakes/fake_authority.rb +13 -0
- data/spec/support/features/batch_edit_actions.rb +28 -0
- data/spec/support/features/session_helpers.rb +14 -0
- data/spec/support/features/workflow.rb +9 -0
- data/spec/support/features.rb +10 -0
- data/spec/support/input_support.rb +11 -0
- data/spec/support/logging_formatter.rb +66 -0
- data/spec/support/matchers/api_responses.rb +26 -0
- data/spec/support/matchers/collection_type_property_matchers.rb +29 -0
- data/spec/support/matchers/response_matchers.rb +7 -0
- data/spec/support/optional_example.rb +16 -0
- data/spec/support/rake.rb +41 -0
- data/spec/support/selectors.rb +91 -0
- data/spec/support/spec_statistic.rb +23 -0
- data/spec/support/speedup.rb +6 -0
- data/spec/support/statistic_helper.rb +9 -0
- data/spec/tasks/rake_spec.rb +27 -0
- data/spec/test_app_templates/Gemfile.extra +6 -0
- data/spec/test_app_templates/disable_animations_in_test_environment.rb +54 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +125 -0
- data/spec/views/_flash_msg.html.erb_spec.rb +32 -0
- data/spec/views/_user_util_links.html.erb_spec.rb +44 -0
- data/spec/views/catalog/_index_list_default.html.erb_spec.rb +43 -0
- data/spec/views/catalog/_search_form.html.erb_spec.rb +16 -0
- data/spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb +10 -0
- data/spec/views/catalog/index.html.erb_spec.rb +50 -0
- data/spec/views/content_blocks/edit.html.erb_spec.rb +21 -0
- data/spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb +29 -0
- data/spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb +128 -0
- data/spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb +19 -0
- data/spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb +24 -0
- data/spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb +22 -0
- data/spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb +68 -0
- data/spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb +13 -0
- data/spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb +28 -0
- data/spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb +40 -0
- data/spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb +29 -0
- data/spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb +21 -0
- data/spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb +45 -0
- data/spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb +22 -0
- data/spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb +27 -0
- data/spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb +27 -0
- data/spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb +24 -0
- data/spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb +73 -0
- data/spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb +86 -0
- data/spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb +62 -0
- data/spec/views/hyrax/admin/features/index.html.erb_spec.rb +15 -0
- data/spec/views/hyrax/admin/stats/show.html.erb_spec.rb +54 -0
- data/spec/views/hyrax/admin/users/index.html.erb_spec.rb +45 -0
- data/spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb +40 -0
- data/spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb +30 -0
- data/spec/views/hyrax/base/_attributes.html.erb_spec.rb +35 -0
- data/spec/views/hyrax/base/_citations.html.erb_spec.rb +43 -0
- data/spec/views/hyrax/base/_form.html.erb_spec.rb +80 -0
- data/spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb +68 -0
- data/spec/views/hyrax/base/_form_files.html.erb_spec.rb +38 -0
- data/spec/views/hyrax/base/_form_metadata.html.erb_spec.rb +40 -0
- data/spec/views/hyrax/base/_form_progress.html.erb_spec.rb +131 -0
- data/spec/views/hyrax/base/_form_relationships.html.erb_spec.rb +48 -0
- data/spec/views/hyrax/base/_form_rendering.html.erb_spec.rb +22 -0
- data/spec/views/hyrax/base/_items.html.erb_spec.rb +55 -0
- data/spec/views/hyrax/base/_member.html.erb_spec.rb +43 -0
- data/spec/views/hyrax/base/_relationships.html.erb_spec.rb +92 -0
- data/spec/views/hyrax/base/_show_actions.html.erb_spec.rb +149 -0
- data/spec/views/hyrax/base/_social_media.html.erb_spec.rb +16 -0
- data/spec/views/hyrax/base/edit.html.erb_spec.rb +26 -0
- data/spec/views/hyrax/base/file_manager.html.erb_spec.rb +88 -0
- data/spec/views/hyrax/base/show.html.erb_spec.rb +201 -0
- data/spec/views/hyrax/base/show.json.jbuilder_spec.rb +23 -0
- data/spec/views/hyrax/base/unauthorized.html.erb_spec.rb +30 -0
- data/spec/views/hyrax/base/unavailable.html.erb_spec.rb +36 -0
- data/spec/views/hyrax/batch_edits/check_all_spec.rb +13 -0
- data/spec/views/hyrax/batch_edits/edit.html.erb_spec.rb +35 -0
- data/spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb +24 -0
- data/spec/views/hyrax/citations/work.html.erb_spec.rb +175 -0
- data/spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb +32 -0
- data/spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb +24 -0
- data/spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb +35 -0
- data/spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb +74 -0
- data/spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
- data/spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb +39 -0
- data/spec/views/hyrax/collections/show.html.erb_spec.rb +48 -0
- data/spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb +132 -0
- data/spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb +43 -0
- data/spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb +60 -0
- data/spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb +23 -0
- data/spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb +67 -0
- data/spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb +47 -0
- data/spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb +22 -0
- data/spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb +108 -0
- data/spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb +51 -0
- data/spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb +77 -0
- data/spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb +46 -0
- data/spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb +32 -0
- data/spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb +24 -0
- data/spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb +31 -0
- data/spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb +35 -0
- data/spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb +61 -0
- data/spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb +82 -0
- data/spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb +62 -0
- data/spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb +60 -0
- data/spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb +75 -0
- data/spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb +18 -0
- data/spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb +20 -0
- data/spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb +116 -0
- data/spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb +36 -0
- data/spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb +67 -0
- data/spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb +36 -0
- data/spec/views/hyrax/dashboard/show_user_spec.rb +61 -0
- data/spec/views/hyrax/depositors/index.html.erb_spec.rb +13 -0
- data/spec/views/hyrax/embargoes/index.html.erb_spec.rb +14 -0
- data/spec/views/hyrax/file_sets/_actions.html.erb_spec.rb +36 -0
- data/spec/views/hyrax/file_sets/_permission.html.erb_spec.rb +14 -0
- data/spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb +44 -0
- data/spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb +62 -0
- data/spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb +29 -0
- data/spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb +34 -0
- data/spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb +15 -0
- data/spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb +29 -0
- data/spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb +29 -0
- data/spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb +29 -0
- data/spec/views/hyrax/file_sets/show.html.erb_spec.rb +47 -0
- data/spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb +27 -0
- data/spec/views/hyrax/homepage/_announcement.html.erb_spec.rb +27 -0
- data/spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb +40 -0
- data/spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb +23 -0
- data/spec/views/hyrax/homepage/index.html.erb_spec.rb +129 -0
- data/spec/views/hyrax/leases/index.html.erb_spec.rb +14 -0
- data/spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb +65 -0
- data/spec/views/hyrax/my/_search_header.html.erb_spec.rb +34 -0
- data/spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb +40 -0
- data/spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb +109 -0
- data/spec/views/hyrax/my/collections/index.html.erb_spec.rb +34 -0
- data/spec/views/hyrax/my/facet.html.erb_spec.rb +34 -0
- data/spec/views/hyrax/my/works/_list_works.html.erb_spec.rb +30 -0
- data/spec/views/hyrax/my/works/index.html.erb_spec.rb +69 -0
- data/spec/views/hyrax/permissions/confirm.html.erb_spec.rb +15 -0
- data/spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb +17 -0
- data/spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb +6 -0
- data/spec/views/hyrax/stats/file.html.erb_spec.rb +48 -0
- data/spec/views/hyrax/uploads/create.json.jbuilder_spec.rb +17 -0
- data/spec/views/hyrax/users/_user_info.html.erb_spec.rb +25 -0
- data/spec/views/hyrax/users/index.html.erb_spec.rb +25 -0
- data/spec/views/hyrax/users/show.html.erb_spec.rb +55 -0
- data/spec/views/layouts/error.html.erb_spec.rb +6 -0
- data/spec/views/pages/edit.html.erb_spec.rb +27 -0
- data/spec/views/pages/show.html.erb_spec.rb +17 -0
- data/spec/views/records/edit_fields/_based_near.html.erb_spec.rb +20 -0
- data/spec/views/records/edit_fields/_description.html.erb_spec.rb +67 -0
- data/spec/views/records/edit_fields/_language.html.erb_spec.rb +20 -0
- data/spec/views/records/edit_fields/_subject.html.erb_spec.rb +20 -0
- data/spec/views/shared/select_work_type_modal.html.erb_spec.rb +51 -0
- data/template.rb +1 -3
- metadata +1455 -151
- data/.regen +0 -1
- data/app/assets/javascripts/hyrax/skip_to_content.js +0 -15
- data/app/helpers/hyrax/work_form_helper.rb +0 -48
- data/app/jobs/embargo_expiry_job.rb +0 -15
- data/app/jobs/iiif_manifest_cache_prewarm_job.rb +0 -16
- data/app/jobs/lease_expiry_job.rb +0 -15
- data/app/models/concerns/hyrax/solr_document/ordered_members.rb +0 -46
- data/app/presenters/hyrax/iiif_manifest_presenter.rb +0 -232
- data/app/services/hyrax/caching_iiif_manifest_builder.rb +0 -53
- data/app/services/hyrax/collection_size_service.rb +0 -52
- data/app/services/hyrax/identifier/builder.rb +0 -45
- data/app/services/hyrax/identifier/dispatcher.rb +0 -61
- data/app/services/hyrax/identifier/registrar.rb +0 -41
- data/app/services/hyrax/manifest_builder_service.rb +0 -88
- data/lib/hyrax/specs/shared_specs/identifiers.rb +0 -27
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:
|
4
|
+
version: 3.0.0.pre.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Coyne
|
@@ -11,10 +11,10 @@ authors:
|
|
11
11
|
- Jeremy Friesen
|
12
12
|
- Trey Pendragon
|
13
13
|
- Esmé Cowles
|
14
|
-
autorequire:
|
14
|
+
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
17
|
+
date: 2018-11-15 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'
|
37
40
|
- - ">="
|
38
41
|
- !ruby/object:Gem::Version
|
39
42
|
version: 11.5.2
|
40
|
-
- - "<"
|
41
|
-
- !ruby/object:Gem::Version
|
42
|
-
version: '13'
|
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'
|
47
50
|
- - ">="
|
48
51
|
- !ruby/object:Gem::Version
|
49
52
|
version: 11.5.2
|
50
|
-
- - "<"
|
51
|
-
- !ruby/object:Gem::Version
|
52
|
-
version: '13'
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: almond-rails
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -124,14 +124,14 @@ dependencies:
|
|
124
124
|
name: browse-everything
|
125
125
|
requirement: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
|
-
- - "
|
127
|
+
- - "<"
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: '0.16'
|
130
130
|
type: :runtime
|
131
131
|
prerelease: false
|
132
132
|
version_requirements: !ruby/object:Gem::Requirement
|
133
133
|
requirements:
|
134
|
-
- - "
|
134
|
+
- - "<"
|
135
135
|
- !ruby/object:Gem::Version
|
136
136
|
version: '0.16'
|
137
137
|
- !ruby/object:Gem::Dependency
|
@@ -162,20 +162,6 @@ 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'
|
179
165
|
- !ruby/object:Gem::Dependency
|
180
166
|
name: dry-equalizer
|
181
167
|
requirement: !ruby/object:Gem::Requirement
|
@@ -194,22 +180,16 @@ dependencies:
|
|
194
180
|
name: dry-struct
|
195
181
|
requirement: !ruby/object:Gem::Requirement
|
196
182
|
requirements:
|
197
|
-
- - "
|
183
|
+
- - "~>"
|
198
184
|
- !ruby/object:Gem::Version
|
199
185
|
version: '0.1'
|
200
|
-
- - "<"
|
201
|
-
- !ruby/object:Gem::Version
|
202
|
-
version: '2.0'
|
203
186
|
type: :runtime
|
204
187
|
prerelease: false
|
205
188
|
version_requirements: !ruby/object:Gem::Requirement
|
206
189
|
requirements:
|
207
|
-
- - "
|
190
|
+
- - "~>"
|
208
191
|
- !ruby/object:Gem::Version
|
209
192
|
version: '0.1'
|
210
|
-
- - "<"
|
211
|
-
- !ruby/object:Gem::Version
|
212
|
-
version: '2.0'
|
213
193
|
- !ruby/object:Gem::Dependency
|
214
194
|
name: dry-transaction
|
215
195
|
requirement: !ruby/object:Gem::Requirement
|
@@ -228,22 +208,16 @@ dependencies:
|
|
228
208
|
name: dry-validation
|
229
209
|
requirement: !ruby/object:Gem::Requirement
|
230
210
|
requirements:
|
231
|
-
- - "
|
211
|
+
- - "~>"
|
232
212
|
- !ruby/object:Gem::Version
|
233
213
|
version: '0.9'
|
234
|
-
- - "<"
|
235
|
-
- !ruby/object:Gem::Version
|
236
|
-
version: '2.0'
|
237
214
|
type: :runtime
|
238
215
|
prerelease: false
|
239
216
|
version_requirements: !ruby/object:Gem::Requirement
|
240
217
|
requirements:
|
241
|
-
- - "
|
218
|
+
- - "~>"
|
242
219
|
- !ruby/object:Gem::Version
|
243
220
|
version: '0.9'
|
244
|
-
- - "<"
|
245
|
-
- !ruby/object:Gem::Version
|
246
|
-
version: '2.0'
|
247
221
|
- !ruby/object:Gem::Dependency
|
248
222
|
name: flipflop
|
249
223
|
requirement: !ruby/object:Gem::Requirement
|
@@ -309,7 +283,7 @@ dependencies:
|
|
309
283
|
version: '3.3'
|
310
284
|
- - "<"
|
311
285
|
- !ruby/object:Gem::Version
|
312
|
-
version: '
|
286
|
+
version: '5.0'
|
313
287
|
type: :runtime
|
314
288
|
prerelease: false
|
315
289
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -319,27 +293,21 @@ dependencies:
|
|
319
293
|
version: '3.3'
|
320
294
|
- - "<"
|
321
295
|
- !ruby/object:Gem::Version
|
322
|
-
version: '
|
296
|
+
version: '5.0'
|
323
297
|
- !ruby/object:Gem::Dependency
|
324
298
|
name: hydra-head
|
325
299
|
requirement: !ruby/object:Gem::Requirement
|
326
300
|
requirements:
|
327
301
|
- - ">="
|
328
302
|
- !ruby/object:Gem::Version
|
329
|
-
version: 10.
|
330
|
-
- - "<"
|
331
|
-
- !ruby/object:Gem::Version
|
332
|
-
version: '12'
|
303
|
+
version: 10.5.0
|
333
304
|
type: :runtime
|
334
305
|
prerelease: false
|
335
306
|
version_requirements: !ruby/object:Gem::Requirement
|
336
307
|
requirements:
|
337
308
|
- - ">="
|
338
309
|
- !ruby/object:Gem::Version
|
339
|
-
version: 10.
|
340
|
-
- - "<"
|
341
|
-
- !ruby/object:Gem::Version
|
342
|
-
version: '12'
|
310
|
+
version: 10.5.0
|
343
311
|
- !ruby/object:Gem::Dependency
|
344
312
|
name: hydra-works
|
345
313
|
requirement: !ruby/object:Gem::Requirement
|
@@ -454,16 +422,16 @@ dependencies:
|
|
454
422
|
name: linkeddata
|
455
423
|
requirement: !ruby/object:Gem::Requirement
|
456
424
|
requirements:
|
457
|
-
- - "
|
425
|
+
- - ">="
|
458
426
|
- !ruby/object:Gem::Version
|
459
|
-
version: '
|
427
|
+
version: '0'
|
460
428
|
type: :runtime
|
461
429
|
prerelease: false
|
462
430
|
version_requirements: !ruby/object:Gem::Requirement
|
463
431
|
requirements:
|
464
|
-
- - "
|
432
|
+
- - ">="
|
465
433
|
- !ruby/object:Gem::Version
|
466
|
-
version: '
|
434
|
+
version: '0'
|
467
435
|
- !ruby/object:Gem::Dependency
|
468
436
|
name: mailboxer
|
469
437
|
requirement: !ruby/object:Gem::Requirement
|
@@ -586,22 +554,16 @@ dependencies:
|
|
586
554
|
name: qa
|
587
555
|
requirement: !ruby/object:Gem::Requirement
|
588
556
|
requirements:
|
589
|
-
- - "
|
557
|
+
- - "~>"
|
590
558
|
- !ruby/object:Gem::Version
|
591
559
|
version: '2.0'
|
592
|
-
- - "<"
|
593
|
-
- !ruby/object:Gem::Version
|
594
|
-
version: '6.0'
|
595
560
|
type: :runtime
|
596
561
|
prerelease: false
|
597
562
|
version_requirements: !ruby/object:Gem::Requirement
|
598
563
|
requirements:
|
599
|
-
- - "
|
564
|
+
- - "~>"
|
600
565
|
- !ruby/object:Gem::Version
|
601
566
|
version: '2.0'
|
602
|
-
- - "<"
|
603
|
-
- !ruby/object:Gem::Version
|
604
|
-
version: '6.0'
|
605
567
|
- !ruby/object:Gem::Dependency
|
606
568
|
name: rails_autolink
|
607
569
|
requirement: !ruby/object:Gem::Requirement
|
@@ -630,20 +592,6 @@ dependencies:
|
|
630
592
|
- - ">="
|
631
593
|
- !ruby/object:Gem::Version
|
632
594
|
version: '0'
|
633
|
-
- !ruby/object:Gem::Dependency
|
634
|
-
name: rdf-vocab
|
635
|
-
requirement: !ruby/object:Gem::Requirement
|
636
|
-
requirements:
|
637
|
-
- - "<"
|
638
|
-
- !ruby/object:Gem::Version
|
639
|
-
version: 3.1.5
|
640
|
-
type: :runtime
|
641
|
-
prerelease: false
|
642
|
-
version_requirements: !ruby/object:Gem::Requirement
|
643
|
-
requirements:
|
644
|
-
- - "<"
|
645
|
-
- !ruby/object:Gem::Version
|
646
|
-
version: 3.1.5
|
647
595
|
- !ruby/object:Gem::Dependency
|
648
596
|
name: redis-namespace
|
649
597
|
requirement: !ruby/object:Gem::Requirement
|
@@ -734,26 +682,6 @@ dependencies:
|
|
734
682
|
- - ">="
|
735
683
|
- !ruby/object:Gem::Version
|
736
684
|
version: '0'
|
737
|
-
- !ruby/object:Gem::Dependency
|
738
|
-
name: solrizer
|
739
|
-
requirement: !ruby/object:Gem::Requirement
|
740
|
-
requirements:
|
741
|
-
- - ">="
|
742
|
-
- !ruby/object:Gem::Version
|
743
|
-
version: '3.4'
|
744
|
-
- - "<"
|
745
|
-
- !ruby/object:Gem::Version
|
746
|
-
version: '5'
|
747
|
-
type: :runtime
|
748
|
-
prerelease: false
|
749
|
-
version_requirements: !ruby/object:Gem::Requirement
|
750
|
-
requirements:
|
751
|
-
- - ">="
|
752
|
-
- !ruby/object:Gem::Version
|
753
|
-
version: '3.4'
|
754
|
-
- - "<"
|
755
|
-
- !ruby/object:Gem::Version
|
756
|
-
version: '5'
|
757
685
|
- !ruby/object:Gem::Dependency
|
758
686
|
name: tinymce-rails
|
759
687
|
requirement: !ruby/object:Gem::Requirement
|
@@ -802,20 +730,6 @@ dependencies:
|
|
802
730
|
- - "~>"
|
803
731
|
- !ruby/object:Gem::Version
|
804
732
|
version: 0.3.0
|
805
|
-
- !ruby/object:Gem::Dependency
|
806
|
-
name: chromedriver-helper
|
807
|
-
requirement: !ruby/object:Gem::Requirement
|
808
|
-
requirements:
|
809
|
-
- - "~>"
|
810
|
-
- !ruby/object:Gem::Version
|
811
|
-
version: '2.1'
|
812
|
-
type: :development
|
813
|
-
prerelease: false
|
814
|
-
version_requirements: !ruby/object:Gem::Requirement
|
815
|
-
requirements:
|
816
|
-
- - "~>"
|
817
|
-
- !ruby/object:Gem::Version
|
818
|
-
version: '2.1'
|
819
733
|
- !ruby/object:Gem::Dependency
|
820
734
|
name: database_cleaner
|
821
735
|
requirement: !ruby/object:Gem::Requirement
|
@@ -836,14 +750,14 @@ dependencies:
|
|
836
750
|
requirements:
|
837
751
|
- - "~>"
|
838
752
|
- !ruby/object:Gem::Version
|
839
|
-
version: '2.
|
753
|
+
version: '2.0'
|
840
754
|
type: :development
|
841
755
|
prerelease: false
|
842
756
|
version_requirements: !ruby/object:Gem::Requirement
|
843
757
|
requirements:
|
844
758
|
- - "~>"
|
845
759
|
- !ruby/object:Gem::Version
|
846
|
-
version: '2.
|
760
|
+
version: '2.0'
|
847
761
|
- !ruby/object:Gem::Dependency
|
848
762
|
name: equivalent-xml
|
849
763
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1106,20 +1020,6 @@ dependencies:
|
|
1106
1020
|
- - "~>"
|
1107
1021
|
- !ruby/object:Gem::Version
|
1108
1022
|
version: '3.1'
|
1109
|
-
- !ruby/object:Gem::Dependency
|
1110
|
-
name: webdrivers
|
1111
|
-
requirement: !ruby/object:Gem::Requirement
|
1112
|
-
requirements:
|
1113
|
-
- - "~>"
|
1114
|
-
- !ruby/object:Gem::Version
|
1115
|
-
version: '3.0'
|
1116
|
-
type: :development
|
1117
|
-
prerelease: false
|
1118
|
-
version_requirements: !ruby/object:Gem::Requirement
|
1119
|
-
requirements:
|
1120
|
-
- - "~>"
|
1121
|
-
- !ruby/object:Gem::Version
|
1122
|
-
version: '3.0'
|
1123
1023
|
- !ruby/object:Gem::Dependency
|
1124
1024
|
name: webmock
|
1125
1025
|
requirement: !ruby/object:Gem::Requirement
|
@@ -1135,19 +1035,39 @@ dependencies:
|
|
1135
1035
|
- !ruby/object:Gem::Version
|
1136
1036
|
version: '0'
|
1137
1037
|
- !ruby/object:Gem::Dependency
|
1138
|
-
name:
|
1038
|
+
name: simple_form
|
1139
1039
|
requirement: !ruby/object:Gem::Requirement
|
1140
1040
|
requirements:
|
1141
1041
|
- - "~>"
|
1142
1042
|
- !ruby/object:Gem::Version
|
1143
|
-
version: '
|
1043
|
+
version: '3.2'
|
1044
|
+
- - "<="
|
1045
|
+
- !ruby/object:Gem::Version
|
1046
|
+
version: 3.5.0
|
1144
1047
|
type: :runtime
|
1145
1048
|
prerelease: false
|
1146
1049
|
version_requirements: !ruby/object:Gem::Requirement
|
1147
1050
|
requirements:
|
1148
1051
|
- - "~>"
|
1149
1052
|
- !ruby/object:Gem::Version
|
1150
|
-
version: '
|
1053
|
+
version: '3.2'
|
1054
|
+
- - "<="
|
1055
|
+
- !ruby/object:Gem::Version
|
1056
|
+
version: 3.5.0
|
1057
|
+
- !ruby/object:Gem::Dependency
|
1058
|
+
name: chromedriver-helper
|
1059
|
+
requirement: !ruby/object:Gem::Requirement
|
1060
|
+
requirements:
|
1061
|
+
- - "<"
|
1062
|
+
- !ruby/object:Gem::Version
|
1063
|
+
version: '2.0'
|
1064
|
+
type: :development
|
1065
|
+
prerelease: false
|
1066
|
+
version_requirements: !ruby/object:Gem::Requirement
|
1067
|
+
requirements:
|
1068
|
+
- - "<"
|
1069
|
+
- !ruby/object:Gem::Version
|
1070
|
+
version: '2.0'
|
1151
1071
|
description: Hyrax is a featureful Samvera front-end based on the latest and greatest
|
1152
1072
|
Samvera software components.
|
1153
1073
|
email:
|
@@ -1176,11 +1096,11 @@ files:
|
|
1176
1096
|
- ".github/stale.yml"
|
1177
1097
|
- ".gitignore"
|
1178
1098
|
- ".hound.yml"
|
1179
|
-
- ".regen"
|
1180
1099
|
- ".rspec"
|
1181
1100
|
- ".rubocop.yml"
|
1182
1101
|
- ".rubocop_fixme.yml"
|
1183
1102
|
- ".scss-lint.yml"
|
1103
|
+
- ".travis.yml"
|
1184
1104
|
- CODE_OF_CONDUCT.md
|
1185
1105
|
- Gemfile
|
1186
1106
|
- LICENSE
|
@@ -1299,7 +1219,6 @@ files:
|
|
1299
1219
|
- app/assets/javascripts/hyrax/select_submit.js
|
1300
1220
|
- app/assets/javascripts/hyrax/select_work_type.es6
|
1301
1221
|
- app/assets/javascripts/hyrax/single_use_links_manager.js
|
1302
|
-
- app/assets/javascripts/hyrax/skip_to_content.js
|
1303
1222
|
- app/assets/javascripts/hyrax/sort_and_per_page.es6
|
1304
1223
|
- app/assets/javascripts/hyrax/sorting.js
|
1305
1224
|
- app/assets/javascripts/hyrax/tabbed_form.es6
|
@@ -1333,6 +1252,7 @@ files:
|
|
1333
1252
|
- app/assets/stylesheets/hyrax/_header.scss
|
1334
1253
|
- app/assets/stylesheets/hyrax/_home-page.scss
|
1335
1254
|
- app/assets/stylesheets/hyrax/_hyrax.scss
|
1255
|
+
- app/assets/stylesheets/hyrax/_login_signup.scss
|
1336
1256
|
- app/assets/stylesheets/hyrax/_modal.scss
|
1337
1257
|
- app/assets/stylesheets/hyrax/_nestable.scss
|
1338
1258
|
- app/assets/stylesheets/hyrax/_positioning.scss
|
@@ -1487,7 +1407,6 @@ files:
|
|
1487
1407
|
- app/helpers/hyrax/title_helper.rb
|
1488
1408
|
- app/helpers/hyrax/trophy_helper.rb
|
1489
1409
|
- app/helpers/hyrax/url_helper.rb
|
1490
|
-
- app/helpers/hyrax/work_form_helper.rb
|
1491
1410
|
- app/indexers/concerns/hyrax/indexes_basic_metadata.rb
|
1492
1411
|
- app/indexers/concerns/hyrax/indexes_linked_metadata.rb
|
1493
1412
|
- app/indexers/hyrax/admin_set_indexer.rb
|
@@ -1515,7 +1434,6 @@ files:
|
|
1515
1434
|
- app/jobs/content_update_event_job.rb
|
1516
1435
|
- app/jobs/create_derivatives_job.rb
|
1517
1436
|
- app/jobs/create_work_job.rb
|
1518
|
-
- app/jobs/embargo_expiry_job.rb
|
1519
1437
|
- app/jobs/event_job.rb
|
1520
1438
|
- app/jobs/file_set_attached_event_job.rb
|
1521
1439
|
- app/jobs/fixity_check_job.rb
|
@@ -1526,13 +1444,11 @@ files:
|
|
1526
1444
|
- app/jobs/hyrax/grant_read_to_members_job.rb
|
1527
1445
|
- app/jobs/hyrax/revoke_edit_from_members_job.rb
|
1528
1446
|
- app/jobs/hyrax/revoke_edit_job.rb
|
1529
|
-
- app/jobs/iiif_manifest_cache_prewarm_job.rb
|
1530
1447
|
- app/jobs/import_export_job.rb
|
1531
1448
|
- app/jobs/import_url_job.rb
|
1532
1449
|
- app/jobs/ingest_job.rb
|
1533
1450
|
- app/jobs/ingest_local_file_job.rb
|
1534
1451
|
- app/jobs/inherit_permissions_job.rb
|
1535
|
-
- app/jobs/lease_expiry_job.rb
|
1536
1452
|
- app/jobs/resolrize_job.rb
|
1537
1453
|
- app/jobs/stream_notifications_job.rb
|
1538
1454
|
- app/jobs/user_edit_profile_event_job.rb
|
@@ -1572,7 +1488,6 @@ files:
|
|
1572
1488
|
- app/models/concerns/hyrax/solr_document/characterization.rb
|
1573
1489
|
- app/models/concerns/hyrax/solr_document/export.rb
|
1574
1490
|
- app/models/concerns/hyrax/solr_document/metadata.rb
|
1575
|
-
- app/models/concerns/hyrax/solr_document/ordered_members.rb
|
1576
1491
|
- app/models/concerns/hyrax/solr_document_behavior.rb
|
1577
1492
|
- app/models/concerns/hyrax/suppressible.rb
|
1578
1493
|
- app/models/concerns/hyrax/user.rb
|
@@ -1651,7 +1566,6 @@ files:
|
|
1651
1566
|
- app/presenters/hyrax/file_usage.rb
|
1652
1567
|
- app/presenters/hyrax/fixity_status_presenter.rb
|
1653
1568
|
- app/presenters/hyrax/homepage_presenter.rb
|
1654
|
-
- app/presenters/hyrax/iiif_manifest_presenter.rb
|
1655
1569
|
- app/presenters/hyrax/inspect_work_presenter.rb
|
1656
1570
|
- app/presenters/hyrax/lease_presenter.rb
|
1657
1571
|
- app/presenters/hyrax/member_presenter_factory.rb
|
@@ -1738,10 +1652,8 @@ files:
|
|
1738
1652
|
- app/services/hyrax/analytics.rb
|
1739
1653
|
- app/services/hyrax/batch_create_failure_service.rb
|
1740
1654
|
- app/services/hyrax/batch_create_success_service.rb
|
1741
|
-
- app/services/hyrax/caching_iiif_manifest_builder.rb
|
1742
1655
|
- app/services/hyrax/change_content_depositor_service.rb
|
1743
1656
|
- app/services/hyrax/collection_member_service.rb
|
1744
|
-
- app/services/hyrax/collection_size_service.rb
|
1745
1657
|
- app/services/hyrax/collection_thumbnail_path_service.rb
|
1746
1658
|
- app/services/hyrax/collection_types/create_service.rb
|
1747
1659
|
- app/services/hyrax/collection_types/permissions_service.rb
|
@@ -1767,9 +1679,6 @@ files:
|
|
1767
1679
|
- app/services/hyrax/fixity_check_failure_service.rb
|
1768
1680
|
- app/services/hyrax/form_metadata_service.rb
|
1769
1681
|
- app/services/hyrax/graph_exporter.rb
|
1770
|
-
- app/services/hyrax/identifier/builder.rb
|
1771
|
-
- app/services/hyrax/identifier/dispatcher.rb
|
1772
|
-
- app/services/hyrax/identifier/registrar.rb
|
1773
1682
|
- app/services/hyrax/iiif_authorization_service.rb
|
1774
1683
|
- app/services/hyrax/import_url_failure_service.rb
|
1775
1684
|
- app/services/hyrax/indexes_thumbnails.rb
|
@@ -1780,7 +1689,6 @@ files:
|
|
1780
1689
|
- app/services/hyrax/local_file_service.rb
|
1781
1690
|
- app/services/hyrax/lock_manager.rb
|
1782
1691
|
- app/services/hyrax/lockable.rb
|
1783
|
-
- app/services/hyrax/manifest_builder_service.rb
|
1784
1692
|
- app/services/hyrax/messenger_service.rb
|
1785
1693
|
- app/services/hyrax/microdata.rb
|
1786
1694
|
- app/services/hyrax/multiple_membership_checker.rb
|
@@ -1951,6 +1859,7 @@ files:
|
|
1951
1859
|
- app/views/hyrax/base/_share_with.html.erb
|
1952
1860
|
- app/views/hyrax/base/_show_actions.html.erb
|
1953
1861
|
- app/views/hyrax/base/_social_media.html.erb
|
1862
|
+
- app/views/hyrax/base/_work_button_row.html.erb
|
1954
1863
|
- app/views/hyrax/base/_work_description.erb
|
1955
1864
|
- app/views/hyrax/base/_work_title.erb
|
1956
1865
|
- app/views/hyrax/base/_work_type.html.erb
|
@@ -2349,6 +2258,7 @@ files:
|
|
2349
2258
|
- lib/generators/hyrax/templates/db/migrate/20171117153051_add_unique_constraint_to_permission_template_accesses.rb.erb
|
2350
2259
|
- lib/generators/hyrax/templates/db/migrate/20180302200051_add_branding_to_collection_type.rb.erb
|
2351
2260
|
- lib/generators/hyrax/templates/db/migrate/20180406202557_add_badge_color_to_collection_types.rb.erb
|
2261
|
+
- lib/generators/hyrax/templates/db/migrate/20180612002029_update_single_use_links_column_names.rb.erb
|
2352
2262
|
- lib/generators/hyrax/templates/db/seeds.rb
|
2353
2263
|
- lib/generators/hyrax/templates/hyrax.scss
|
2354
2264
|
- lib/generators/hyrax/templates/hyrax_helper.rb
|
@@ -2409,7 +2319,6 @@ files:
|
|
2409
2319
|
- lib/hyrax/search_state.rb
|
2410
2320
|
- lib/hyrax/specs/shared_specs.rb
|
2411
2321
|
- lib/hyrax/specs/shared_specs/derivative_service.rb
|
2412
|
-
- lib/hyrax/specs/shared_specs/identifiers.rb
|
2413
2322
|
- lib/hyrax/specs/shared_specs/workflow_method.rb
|
2414
2323
|
- lib/hyrax/transactions.rb
|
2415
2324
|
- lib/hyrax/transactions/container.rb
|
@@ -2434,6 +2343,703 @@ files:
|
|
2434
2343
|
- lib/tasks/reindex.rake
|
2435
2344
|
- lib/tasks/stats_tasks.rake
|
2436
2345
|
- lib/tasks/workflow.rake
|
2346
|
+
- spec/.gitignore
|
2347
|
+
- spec/abilities/ability_spec.rb
|
2348
|
+
- spec/abilities/admin_ability_spec.rb
|
2349
|
+
- spec/abilities/admin_set_ability_spec.rb
|
2350
|
+
- spec/abilities/collection_ability_spec.rb
|
2351
|
+
- spec/abilities/collection_type_ability_spec.rb
|
2352
|
+
- spec/abilities/embargo_and_lease_ability_spec.rb
|
2353
|
+
- spec/abilities/file_set_abilities_spec.rb
|
2354
|
+
- spec/abilities/generic_work_abilities_spec.rb
|
2355
|
+
- spec/abilities/operation_ability_spec.rb
|
2356
|
+
- spec/abilities/permission_template_ability_spec.rb
|
2357
|
+
- spec/abilities/proxies_and_transfer_abilities_spec.rb
|
2358
|
+
- spec/abilities/solr_document_ability_spec.rb
|
2359
|
+
- spec/actors/hyrax/actors/apply_order_actor_spec.rb
|
2360
|
+
- spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
|
2361
|
+
- spec/actors/hyrax/actors/attach_members_actor_spec.rb
|
2362
|
+
- spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
|
2363
|
+
- spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
|
2364
|
+
- spec/actors/hyrax/actors/collections_membership_actor_spec.rb
|
2365
|
+
- spec/actors/hyrax/actors/create_with_files_actor_spec.rb
|
2366
|
+
- spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb
|
2367
|
+
- spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
|
2368
|
+
- spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb
|
2369
|
+
- spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
|
2370
|
+
- spec/actors/hyrax/actors/embargo_actor_spec.rb
|
2371
|
+
- spec/actors/hyrax/actors/featured_work_actor_spec.rb
|
2372
|
+
- spec/actors/hyrax/actors/file_actor_spec.rb
|
2373
|
+
- spec/actors/hyrax/actors/file_set_actor_spec.rb
|
2374
|
+
- spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb
|
2375
|
+
- spec/actors/hyrax/actors/generic_work_actor_spec.rb
|
2376
|
+
- spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
|
2377
|
+
- spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
|
2378
|
+
- spec/actors/hyrax/actors/lease_actor_spec.rb
|
2379
|
+
- spec/actors/hyrax/actors/model_actor_spec.rb
|
2380
|
+
- spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
|
2381
|
+
- spec/actors/hyrax/actors/ordered_members_actor_spec.rb
|
2382
|
+
- spec/actors/hyrax/actors/transactional_request_spec.rb
|
2383
|
+
- spec/actors/hyrax/actors/transfer_request_actor_spec.rb
|
2384
|
+
- spec/authorities/qa/authorities/collections_spec.rb
|
2385
|
+
- spec/authorities/qa/authorities/find_works_spec.rb
|
2386
|
+
- spec/channels/hyrax/application_cable/channel_spec.rb
|
2387
|
+
- spec/channels/hyrax/application_cable/connection_spec.rb
|
2388
|
+
- spec/channels/hyrax/notifications_channel_spec.rb
|
2389
|
+
- spec/config/hyrax_events_spec.rb
|
2390
|
+
- spec/controllers/catalog_controller_spec.rb
|
2391
|
+
- spec/controllers/hyrax/accepts_batches_controller_spec.rb
|
2392
|
+
- spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
|
2393
|
+
- spec/controllers/hyrax/admin/appearances_controller_spec.rb
|
2394
|
+
- spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb
|
2395
|
+
- spec/controllers/hyrax/admin/collection_types_controller_spec.rb
|
2396
|
+
- spec/controllers/hyrax/admin/features_controller_spec.rb
|
2397
|
+
- spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
|
2398
|
+
- spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
|
2399
|
+
- spec/controllers/hyrax/admin/stats_controller_spec.rb
|
2400
|
+
- spec/controllers/hyrax/admin/strategies_controller_spec.rb
|
2401
|
+
- spec/controllers/hyrax/admin/users_controller_spec.rb
|
2402
|
+
- spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
|
2403
|
+
- spec/controllers/hyrax/admin/workflows_controller_spec.rb
|
2404
|
+
- spec/controllers/hyrax/api/items_controller_spec.rb
|
2405
|
+
- spec/controllers/hyrax/api/zotero_controller_spec.rb
|
2406
|
+
- spec/controllers/hyrax/batch_edits_controller_spec.rb
|
2407
|
+
- spec/controllers/hyrax/batch_uploads_controller_spec.rb
|
2408
|
+
- spec/controllers/hyrax/citations_controller_spec.rb
|
2409
|
+
- spec/controllers/hyrax/collections_controller_spec.rb
|
2410
|
+
- spec/controllers/hyrax/contact_form_controller_spec.rb
|
2411
|
+
- spec/controllers/hyrax/content_blocks_controller_spec.rb
|
2412
|
+
- spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb
|
2413
|
+
- spec/controllers/hyrax/dashboard/collections_controller_spec.rb
|
2414
|
+
- spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb
|
2415
|
+
- spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
|
2416
|
+
- spec/controllers/hyrax/dashboard/works_controller_spec.rb
|
2417
|
+
- spec/controllers/hyrax/dashboard_controller_spec.rb
|
2418
|
+
- spec/controllers/hyrax/depositors_controller_spec.rb
|
2419
|
+
- spec/controllers/hyrax/downloads_controller_spec.rb
|
2420
|
+
- spec/controllers/hyrax/embargoes_controller_spec.rb
|
2421
|
+
- spec/controllers/hyrax/featured_work_lists_controller_spec.rb
|
2422
|
+
- spec/controllers/hyrax/featured_works_controller_spec.rb
|
2423
|
+
- spec/controllers/hyrax/file_sets_controller_spec.rb
|
2424
|
+
- spec/controllers/hyrax/fixity_checks_controller_spec.rb
|
2425
|
+
- spec/controllers/hyrax/generic_works_controller_json_spec.rb
|
2426
|
+
- spec/controllers/hyrax/generic_works_controller_spec.rb
|
2427
|
+
- spec/controllers/hyrax/homepage_controller_spec.rb
|
2428
|
+
- spec/controllers/hyrax/leases_controller_spec.rb
|
2429
|
+
- spec/controllers/hyrax/my/collections_controller_spec.rb
|
2430
|
+
- spec/controllers/hyrax/my/highlights_controller_spec.rb
|
2431
|
+
- spec/controllers/hyrax/my/shares_controller_spec.rb
|
2432
|
+
- spec/controllers/hyrax/my/works_controller_spec.rb
|
2433
|
+
- spec/controllers/hyrax/notifications_controller_spec.rb
|
2434
|
+
- spec/controllers/hyrax/operations_controller_spec.rb
|
2435
|
+
- spec/controllers/hyrax/pages_controller_spec.rb
|
2436
|
+
- spec/controllers/hyrax/permissions_controller_spec.rb
|
2437
|
+
- spec/controllers/hyrax/resource_sync_controller_spec.rb
|
2438
|
+
- spec/controllers/hyrax/single_use_links_controller_spec.rb
|
2439
|
+
- spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
|
2440
|
+
- spec/controllers/hyrax/static_controller_spec.rb
|
2441
|
+
- spec/controllers/hyrax/stats_controller_spec.rb
|
2442
|
+
- spec/controllers/hyrax/transfers_controller_spec.rb
|
2443
|
+
- spec/controllers/hyrax/trophies_controller_spec.rb
|
2444
|
+
- spec/controllers/hyrax/uploads_controller_spec.rb
|
2445
|
+
- spec/controllers/hyrax/users_controller_spec.rb
|
2446
|
+
- spec/controllers/hyrax/workflow_actions_controller_spec.rb
|
2447
|
+
- spec/conversions/power_converters/polymorphic_type_spec.rb
|
2448
|
+
- spec/conversions/power_converters/sipity_action_name_spec.rb
|
2449
|
+
- spec/conversions/power_converters/sipity_action_spec.rb
|
2450
|
+
- spec/conversions/power_converters/sipity_agent_spec.rb
|
2451
|
+
- spec/conversions/power_converters/sipity_entity_spec.rb
|
2452
|
+
- spec/conversions/power_converters/sipity_role_spec.rb
|
2453
|
+
- spec/conversions/power_converters/sipity_workflow_id_spec.rb
|
2454
|
+
- spec/conversions/power_converters/sipity_workflow_state_spec.rb
|
2455
|
+
- spec/factories/admin_sets.rb
|
2456
|
+
- spec/factories/admin_sets_lw.rb
|
2457
|
+
- spec/factories/api_items.rb
|
2458
|
+
- spec/factories/collection_branding_infos.rb
|
2459
|
+
- spec/factories/collection_type_participants.rb
|
2460
|
+
- spec/factories/collection_types.rb
|
2461
|
+
- spec/factories/collections.rb
|
2462
|
+
- spec/factories/collections_factory.rb
|
2463
|
+
- spec/factories/content_blocks.rb
|
2464
|
+
- spec/factories/featured_works.rb
|
2465
|
+
- spec/factories/file_sets.rb
|
2466
|
+
- spec/factories/generic_works.rb
|
2467
|
+
- spec/factories/object_id.rb
|
2468
|
+
- spec/factories/operations.rb
|
2469
|
+
- spec/factories/permission_template_accesses.rb
|
2470
|
+
- spec/factories/permission_templates.rb
|
2471
|
+
- spec/factories/proxy_deposit_requests.rb
|
2472
|
+
- spec/factories/single_use_links.rb
|
2473
|
+
- spec/factories/sipity_entities.rb
|
2474
|
+
- spec/factories/uploaded_files.rb
|
2475
|
+
- spec/factories/users.rb
|
2476
|
+
- spec/factories/workflow_actions.rb
|
2477
|
+
- spec/factories/workflow_states.rb
|
2478
|
+
- spec/factories/workflows.rb
|
2479
|
+
- spec/factory_tests/adminsets_factory_spec.rb
|
2480
|
+
- spec/factory_tests/collections_factory_spec.rb
|
2481
|
+
- spec/features/admin_spec.rb
|
2482
|
+
- spec/features/batch_create_spec.rb
|
2483
|
+
- spec/features/batch_edit_spec.rb
|
2484
|
+
- spec/features/browse_catalog_spec.rb
|
2485
|
+
- spec/features/browse_dashboard_works_spec.rb
|
2486
|
+
- spec/features/catalog_search_spec.rb
|
2487
|
+
- spec/features/collection_multi_membership_spec.rb
|
2488
|
+
- spec/features/collection_spec.rb
|
2489
|
+
- spec/features/collection_type_spec.rb
|
2490
|
+
- spec/features/contact_form_spec.rb
|
2491
|
+
- spec/features/create_child_work_spec.rb
|
2492
|
+
- spec/features/create_work_admin_spec.rb
|
2493
|
+
- spec/features/create_work_spec.rb
|
2494
|
+
- spec/features/dashboard/all_works.rb
|
2495
|
+
- spec/features/dashboard/collection_spec.rb
|
2496
|
+
- spec/features/dashboard/display_admin_dashboard_spec.rb
|
2497
|
+
- spec/features/dashboard/display_dashboard_spec.rb
|
2498
|
+
- spec/features/delete_work_spec.rb
|
2499
|
+
- spec/features/edit_content_block_admin_spec.rb
|
2500
|
+
- spec/features/edit_file_spec.rb
|
2501
|
+
- spec/features/edit_work_spec.rb
|
2502
|
+
- spec/features/embargo_spec.rb
|
2503
|
+
- spec/features/homepage_spec.rb
|
2504
|
+
- spec/features/lease_spec.rb
|
2505
|
+
- spec/features/notifications_spec.rb
|
2506
|
+
- spec/features/ownership_transfer_spec.rb
|
2507
|
+
- spec/features/proxy_spec.rb
|
2508
|
+
- spec/features/search_spec.rb
|
2509
|
+
- spec/features/static_pages_spec.rb
|
2510
|
+
- spec/features/users_spec.rb
|
2511
|
+
- spec/features/work_generator_spec.rb
|
2512
|
+
- spec/features/work_show_spec.rb
|
2513
|
+
- spec/features/workflow_roles_spec.rb
|
2514
|
+
- spec/features/workflow_state_changes_spec.rb
|
2515
|
+
- spec/fixtures/1.5mb-avatar.jpg
|
2516
|
+
- spec/fixtures/4-20.png
|
2517
|
+
- spec/fixtures/Example.ogg
|
2518
|
+
- spec/fixtures/authorities/licenses.yml
|
2519
|
+
- spec/fixtures/charter.docx
|
2520
|
+
- spec/fixtures/config/schema_org.yml
|
2521
|
+
- spec/fixtures/config/schema_org_second.yml
|
2522
|
+
- spec/fixtures/countdown.avi
|
2523
|
+
- spec/fixtures/docx_fits.xml
|
2524
|
+
- spec/fixtures/dublin_core_rdf_descMetadata.nt
|
2525
|
+
- spec/fixtures/hyrax/.gitignore
|
2526
|
+
- spec/fixtures/hyrax/hyrax_test4.pdf
|
2527
|
+
- spec/fixtures/hyrax/hyrax_test5.mp3
|
2528
|
+
- spec/fixtures/hyrax_generic_stub.txt
|
2529
|
+
- spec/fixtures/icons.zip
|
2530
|
+
- spec/fixtures/image.jp2
|
2531
|
+
- spec/fixtures/image.jpg
|
2532
|
+
- spec/fixtures/image.png
|
2533
|
+
- spec/fixtures/jp2_fits.xml
|
2534
|
+
- spec/fixtures/jpg_fits.xml
|
2535
|
+
- spec/fixtures/mp3_fits.xml
|
2536
|
+
- spec/fixtures/pdf_fits.xml
|
2537
|
+
- spec/fixtures/piano_note.wav
|
2538
|
+
- spec/fixtures/png_fits.xml
|
2539
|
+
- spec/fixtures/sample_mpeg4.mp4
|
2540
|
+
- spec/fixtures/small_file.txt
|
2541
|
+
- spec/fixtures/spoken-text.m4a
|
2542
|
+
- spec/fixtures/txt_fits.xml
|
2543
|
+
- spec/fixtures/world.png
|
2544
|
+
- spec/fixtures/xls_fits.xml
|
2545
|
+
- spec/fixtures/xml_fits.xml
|
2546
|
+
- spec/forms/hyrax/forms/admin/appearance_spec.rb
|
2547
|
+
- spec/forms/hyrax/forms/admin/collection_type_form_spec.rb
|
2548
|
+
- spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb
|
2549
|
+
- spec/forms/hyrax/forms/admin_set_form_spec.rb
|
2550
|
+
- spec/forms/hyrax/forms/batch_edit_form_spec.rb
|
2551
|
+
- spec/forms/hyrax/forms/batch_upload_form_spec.rb
|
2552
|
+
- spec/forms/hyrax/forms/collection_form_spec.rb
|
2553
|
+
- spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb
|
2554
|
+
- spec/forms/hyrax/forms/file_manager_form_spec.rb
|
2555
|
+
- spec/forms/hyrax/forms/file_set_edit_form_spec.rb
|
2556
|
+
- spec/forms/hyrax/forms/permission_template_form_spec.rb
|
2557
|
+
- spec/forms/hyrax/forms/work_form_spec.rb
|
2558
|
+
- spec/forms/hyrax/forms/workflow_action_form_spec.rb
|
2559
|
+
- spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
|
2560
|
+
- spec/forms/hyrax/generic_work_form_spec.rb
|
2561
|
+
- spec/helpers/blacklight_helper_spec.rb
|
2562
|
+
- spec/helpers/hyrax/ability_helper_spec.rb
|
2563
|
+
- spec/helpers/hyrax/batch_edits_helper_spec.rb
|
2564
|
+
- spec/helpers/hyrax/charts_helper_spec.rb
|
2565
|
+
- spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
|
2566
|
+
- spec/helpers/hyrax/collections_helper_spec.rb
|
2567
|
+
- spec/helpers/hyrax/content_block_helper_spec.rb
|
2568
|
+
- spec/helpers/hyrax/dashboard_helper_behavior_spec.rb
|
2569
|
+
- spec/helpers/hyrax/file_set_helper_spec.rb
|
2570
|
+
- spec/helpers/hyrax/iiif_helper_spec.rb
|
2571
|
+
- spec/helpers/hyrax/trophy_helper_spec.rb
|
2572
|
+
- spec/helpers/hyrax_helper_spec.rb
|
2573
|
+
- spec/hyrax/transactions/create_work_spec.rb
|
2574
|
+
- spec/hyrax/transactions/steps/apply_permission_template_spec.rb
|
2575
|
+
- spec/hyrax/transactions/steps/ensure_admin_set_spec.rb
|
2576
|
+
- spec/hyrax/transactions/steps/ensure_permission_template_spec.rb
|
2577
|
+
- spec/hyrax/transactions/steps/save_work_spec.rb
|
2578
|
+
- spec/hyrax/transactions/steps/set_default_admin_set_spec.rb
|
2579
|
+
- spec/hyrax/transactions/steps/set_modified_date_spec.rb
|
2580
|
+
- spec/hyrax/transactions/steps/set_uploaded_date_spec.rb
|
2581
|
+
- spec/indexers/hyrax/collection_indexer_spec.rb
|
2582
|
+
- spec/indexers/hyrax/file_set_indexer_spec.rb
|
2583
|
+
- spec/indexers/hyrax/generic_work_indexer_spec.rb
|
2584
|
+
- spec/indexers/hyrax/repository_reindexer_spec.rb
|
2585
|
+
- spec/inputs/controlled_vocabulary_input_spec.rb
|
2586
|
+
- spec/inputs/multifile_input_spec.rb
|
2587
|
+
- spec/javascripts/authority_select_spec.js
|
2588
|
+
- spec/javascripts/autocomplete_spec.js.coffee
|
2589
|
+
- spec/javascripts/batch_select_spec.js
|
2590
|
+
- spec/javascripts/charts_spec.coffee
|
2591
|
+
- spec/javascripts/checklist_item_spec.js
|
2592
|
+
- spec/javascripts/deposit_agreement_spec.js
|
2593
|
+
- spec/javascripts/file_manager_member_spec.coffee
|
2594
|
+
- spec/javascripts/file_manager_sorting_spec.coffee
|
2595
|
+
- spec/javascripts/fixtures/chart_example.html
|
2596
|
+
- spec/javascripts/fixtures/dashboard_batch_forms.html
|
2597
|
+
- spec/javascripts/fixtures/file_manager_member.html
|
2598
|
+
- spec/javascripts/fixtures/save_button.html
|
2599
|
+
- spec/javascripts/fixtures/sortable.html
|
2600
|
+
- spec/javascripts/fixtures/sul_table.html
|
2601
|
+
- spec/javascripts/grant_spec.js
|
2602
|
+
- spec/javascripts/helpers/jasmine-ajax.js
|
2603
|
+
- spec/javascripts/helpers/jasmine-jquery.js
|
2604
|
+
- spec/javascripts/helpers/test_fixtures.js.coffee
|
2605
|
+
- spec/javascripts/helpers/test_responses.js
|
2606
|
+
- spec/javascripts/jasmine_spec.rb
|
2607
|
+
- spec/javascripts/relationships_control_spec.js.coffee
|
2608
|
+
- spec/javascripts/required_field_spec.js
|
2609
|
+
- spec/javascripts/save_manager_spec.coffee
|
2610
|
+
- spec/javascripts/save_work_spec.js
|
2611
|
+
- spec/javascripts/settings_spec.js
|
2612
|
+
- spec/javascripts/single_use_links_spec.coffee
|
2613
|
+
- spec/javascripts/support/jasmine.yml
|
2614
|
+
- spec/javascripts/support/jasmine_helper.rb
|
2615
|
+
- spec/javascripts/tabs_spec.js.coffee
|
2616
|
+
- spec/javascripts/uploaded_files_spec.js
|
2617
|
+
- spec/javascripts/visibility_component_spec.js
|
2618
|
+
- spec/jobs/attach_files_to_work_job_spec.rb
|
2619
|
+
- spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb
|
2620
|
+
- spec/jobs/batch_create_job_spec.rb
|
2621
|
+
- spec/jobs/characterize_job_spec.rb
|
2622
|
+
- spec/jobs/content_delete_event_job_spec.rb
|
2623
|
+
- spec/jobs/content_deposit_event_job_spec.rb
|
2624
|
+
- spec/jobs/content_depositor_change_event_job_spec.rb
|
2625
|
+
- spec/jobs/content_new_version_event_job_spec.rb
|
2626
|
+
- spec/jobs/content_restored_version_event_job_spec.rb
|
2627
|
+
- spec/jobs/content_update_event_job_spec.rb
|
2628
|
+
- spec/jobs/create_derivatives_job_spec.rb
|
2629
|
+
- spec/jobs/create_work_job_spec.rb
|
2630
|
+
- spec/jobs/file_set_attached_event_job_spec.rb
|
2631
|
+
- spec/jobs/fixity_check_job_spec.rb
|
2632
|
+
- spec/jobs/hyrax/grant_edit_job_spec.rb
|
2633
|
+
- spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
|
2634
|
+
- spec/jobs/hyrax/grant_read_job_spec.rb
|
2635
|
+
- spec/jobs/hyrax/grant_read_to_members_job_spec.rb
|
2636
|
+
- spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
|
2637
|
+
- spec/jobs/hyrax/revoke_edit_job_spec.rb
|
2638
|
+
- spec/jobs/import_export_job_spec.rb
|
2639
|
+
- spec/jobs/import_url_job_spec.rb
|
2640
|
+
- spec/jobs/ingest_local_file_job_spec.rb
|
2641
|
+
- spec/jobs/inherit_permissions_job_spec.rb
|
2642
|
+
- spec/jobs/stream_notifications_job_spec.rb
|
2643
|
+
- spec/jobs/user_edit_profile_event_job_spec.rb
|
2644
|
+
- spec/jobs/visibility_copy_job_spec.rb
|
2645
|
+
- spec/lib/hyrax/analytics_spec.rb
|
2646
|
+
- spec/lib/hyrax/arkivo/actor_spec.rb
|
2647
|
+
- spec/lib/hyrax/arkivo/create_subscription_job_spec.rb
|
2648
|
+
- spec/lib/hyrax/arkivo/metadata_munger_spec.rb
|
2649
|
+
- spec/lib/hyrax/arkivo/schema_validator_spec.rb
|
2650
|
+
- spec/lib/hyrax/arkivo_spec.rb
|
2651
|
+
- spec/lib/hyrax/collections/search_service_spec.rb
|
2652
|
+
- spec/lib/hyrax/configuration_spec.rb
|
2653
|
+
- spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
|
2654
|
+
- spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
|
2655
|
+
- spec/lib/hyrax/move_all_works_to_admin_set_spec.rb
|
2656
|
+
- spec/lib/hyrax/name_spec.rb
|
2657
|
+
- spec/lib/hyrax/redis_event_store_spec.rb
|
2658
|
+
- spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb
|
2659
|
+
- spec/lib/hyrax/resource_sync/change_list_writer_spec.rb
|
2660
|
+
- spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb
|
2661
|
+
- spec/lib/hyrax/resource_sync/source_description_writer_spec.rb
|
2662
|
+
- spec/lib/hyrax/role_registry_spec.rb
|
2663
|
+
- spec/lib/hyrax/search_state_spec.rb
|
2664
|
+
- spec/lib/hyrax/zotero/config_spec.rb
|
2665
|
+
- spec/lib/hyrax/zotero_spec.rb
|
2666
|
+
- spec/lib/hyrax_spec.rb
|
2667
|
+
- spec/models/admin_set_spec.rb
|
2668
|
+
- spec/models/batch_upload_item_spec.rb
|
2669
|
+
- spec/models/checksum_audit_log_spec.rb
|
2670
|
+
- spec/models/collection_branding_info_spec.rb
|
2671
|
+
- spec/models/collection_spec.rb
|
2672
|
+
- spec/models/concerns/hyrax/collection_nesting_spec.rb
|
2673
|
+
- spec/models/content_block_spec.rb
|
2674
|
+
- spec/models/featured_work_list_spec.rb
|
2675
|
+
- spec/models/featured_work_spec.rb
|
2676
|
+
- spec/models/file_download_stat_spec.rb
|
2677
|
+
- spec/models/file_set_spec.rb
|
2678
|
+
- spec/models/file_view_stat_spec.rb
|
2679
|
+
- spec/models/flipflop_spec.rb
|
2680
|
+
- spec/models/generic_work_spec.rb
|
2681
|
+
- spec/models/hyrax/batch_create_operation_spec.rb
|
2682
|
+
- spec/models/hyrax/collection_type_participant_spec.rb
|
2683
|
+
- spec/models/hyrax/collection_type_spec.rb
|
2684
|
+
- spec/models/hyrax/download_spec.rb
|
2685
|
+
- spec/models/hyrax/operation_spec.rb
|
2686
|
+
- spec/models/hyrax/pageview_spec.rb
|
2687
|
+
- spec/models/hyrax/permission_template_access_spec.rb
|
2688
|
+
- spec/models/hyrax/permission_template_spec.rb
|
2689
|
+
- spec/models/hyrax/permissions/readable_permissions_spec.rb
|
2690
|
+
- spec/models/hyrax/permissions/writable_permissions_spec.rb
|
2691
|
+
- spec/models/hyrax/uploaded_file_spec.rb
|
2692
|
+
- spec/models/hyrax/user_usage_stats_spec.rb
|
2693
|
+
- spec/models/hyrax/work_behavior_spec.rb
|
2694
|
+
- spec/models/job_io_wrapper_spec.rb
|
2695
|
+
- spec/models/proxy_deposit_request_spec.rb
|
2696
|
+
- spec/models/single_use_link_spec.rb
|
2697
|
+
- spec/models/sipity/agent_spec.rb
|
2698
|
+
- spec/models/sipity/comment_spec.rb
|
2699
|
+
- spec/models/sipity/entity_spec.rb
|
2700
|
+
- spec/models/sipity/entity_specific_responsibility_spec.rb
|
2701
|
+
- spec/models/sipity/notifiable_context_spec.rb
|
2702
|
+
- spec/models/sipity/notification_recipient_spec.rb
|
2703
|
+
- spec/models/sipity/notification_spec.rb
|
2704
|
+
- spec/models/sipity/role_spec.rb
|
2705
|
+
- spec/models/sipity/workflow_action_spec.rb
|
2706
|
+
- spec/models/sipity/workflow_responsibility_spec.rb
|
2707
|
+
- spec/models/sipity/workflow_role_spec.rb
|
2708
|
+
- spec/models/sipity/workflow_spec.rb
|
2709
|
+
- spec/models/sipity/workflow_state_action_permission_spec.rb
|
2710
|
+
- spec/models/sipity/workflow_state_action_spec.rb
|
2711
|
+
- spec/models/sipity/workflow_state_spec.rb
|
2712
|
+
- spec/models/solr_document_spec.rb
|
2713
|
+
- spec/models/trophy_spec.rb
|
2714
|
+
- spec/models/user_mailbox_spec.rb
|
2715
|
+
- spec/models/user_spec.rb
|
2716
|
+
- spec/models/work_view_stat_spec.rb
|
2717
|
+
- spec/presenters/hyrax/admin/dashboard_presenter_spec.rb
|
2718
|
+
- spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb
|
2719
|
+
- spec/presenters/hyrax/admin/repository_object_presenter_spec.rb
|
2720
|
+
- spec/presenters/hyrax/admin/user_activity_presenter_spec.rb
|
2721
|
+
- spec/presenters/hyrax/admin/users_presenter_spec.rb
|
2722
|
+
- spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb
|
2723
|
+
- spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb
|
2724
|
+
- spec/presenters/hyrax/admin_set_options_presenter_spec.rb
|
2725
|
+
- spec/presenters/hyrax/admin_set_presenter_spec.rb
|
2726
|
+
- spec/presenters/hyrax/admin_stats_presenter_spec.rb
|
2727
|
+
- spec/presenters/hyrax/collection_options_presenter_spec.rb
|
2728
|
+
- spec/presenters/hyrax/collection_presenter_spec.rb
|
2729
|
+
- spec/presenters/hyrax/dashboard/user_presenter_spec.rb
|
2730
|
+
- spec/presenters/hyrax/embargo_presenter_spec.rb
|
2731
|
+
- spec/presenters/hyrax/file_set_presenter_spec.rb
|
2732
|
+
- spec/presenters/hyrax/file_usage_spec.rb
|
2733
|
+
- spec/presenters/hyrax/fixity_status_presenter_spec.rb
|
2734
|
+
- spec/presenters/hyrax/homepage_presenter_spec.rb
|
2735
|
+
- spec/presenters/hyrax/inspect_work_presenter_spec.rb
|
2736
|
+
- spec/presenters/hyrax/lease_presenter_spec.rb
|
2737
|
+
- spec/presenters/hyrax/member_presenter_factory_spec.rb
|
2738
|
+
- spec/presenters/hyrax/menu_presenter_spec.rb
|
2739
|
+
- spec/presenters/hyrax/permission_badge_spec.rb
|
2740
|
+
- spec/presenters/hyrax/presenter_factory_spec.rb
|
2741
|
+
- spec/presenters/hyrax/presenter_renderer_spec.rb
|
2742
|
+
- spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb
|
2743
|
+
- spec/presenters/hyrax/select_collection_type_presenter_spec.rb
|
2744
|
+
- spec/presenters/hyrax/select_type_list_presenter_spec.rb
|
2745
|
+
- spec/presenters/hyrax/select_type_presenter_spec.rb
|
2746
|
+
- spec/presenters/hyrax/single_use_link_presenter_spec.rb
|
2747
|
+
- spec/presenters/hyrax/transfers_presenter_spec.rb
|
2748
|
+
- spec/presenters/hyrax/trophy_presenter_spec.rb
|
2749
|
+
- spec/presenters/hyrax/twitter_presenter_spec.rb
|
2750
|
+
- spec/presenters/hyrax/user_profile_presenter_spec.rb
|
2751
|
+
- spec/presenters/hyrax/version_list_presenter_spec.rb
|
2752
|
+
- spec/presenters/hyrax/version_presenter_spec.rb
|
2753
|
+
- spec/presenters/hyrax/work_show_presenter_spec.rb
|
2754
|
+
- spec/presenters/hyrax/work_usage_spec.rb
|
2755
|
+
- spec/presenters/hyrax/workflow_presenter_spec.rb
|
2756
|
+
- spec/rails_helper.rb
|
2757
|
+
- spec/renderers/hyrax/renderers/attribute_renderer_spec.rb
|
2758
|
+
- spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
|
2759
|
+
- spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
|
2760
|
+
- spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
|
2761
|
+
- spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
|
2762
|
+
- spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
|
2763
|
+
- spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb
|
2764
|
+
- spec/requests/legacy_routing_spec.rb
|
2765
|
+
- spec/requests/riiif_spec.rb
|
2766
|
+
- spec/routing/admin_routes_spec.rb
|
2767
|
+
- spec/routing/api_route_spec.rb
|
2768
|
+
- spec/routing/citations_route_spec.rb
|
2769
|
+
- spec/routing/collection_permission_templates_routes_spec.rb
|
2770
|
+
- spec/routing/collection_types_routes.rb
|
2771
|
+
- spec/routing/dashboard_routes_spec.rb
|
2772
|
+
- spec/routing/featured_works_route_spec.rb
|
2773
|
+
- spec/routing/operations_spec.rb
|
2774
|
+
- spec/routing/ownership_transfers_route_spec.rb
|
2775
|
+
- spec/routing/resource_sync_spec.rb
|
2776
|
+
- spec/routing/route_spec.rb
|
2777
|
+
- spec/routing/single_use_link_spec.rb
|
2778
|
+
- spec/routing/stats_route_spec.rb
|
2779
|
+
- spec/search_builders/hyrax/abstract_type_relation_spec.rb
|
2780
|
+
- spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
|
2781
|
+
- spec/search_builders/hyrax/admin_set_search_builder_spec.rb
|
2782
|
+
- spec/search_builders/hyrax/catalog_search_builder_spec.rb
|
2783
|
+
- spec/search_builders/hyrax/collection_member_search_builder_spec.rb
|
2784
|
+
- spec/search_builders/hyrax/collection_search_builder_spec.rb
|
2785
|
+
- spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb
|
2786
|
+
- spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb
|
2787
|
+
- spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb
|
2788
|
+
- spec/search_builders/hyrax/embargo_search_builder_spec.rb
|
2789
|
+
- spec/search_builders/hyrax/file_set_search_builder_spec.rb
|
2790
|
+
- spec/search_builders/hyrax/lease_search_builder_spec.rb
|
2791
|
+
- spec/search_builders/hyrax/my/collections_search_builder_spec.rb
|
2792
|
+
- spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
|
2793
|
+
- spec/search_builders/hyrax/my/shares_search_builder_spec.rb
|
2794
|
+
- spec/search_builders/hyrax/my/works_search_builder_spec.rb
|
2795
|
+
- spec/search_builders/hyrax/parent_collection_search_builder_spec.rb
|
2796
|
+
- spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
|
2797
|
+
- spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
|
2798
|
+
- spec/search_builders/hyrax/work_relation_spec.rb
|
2799
|
+
- spec/search_builders/hyrax/work_search_builder_spec.rb
|
2800
|
+
- spec/search_builders/hyrax/works_search_builder_spec.rb
|
2801
|
+
- spec/services/hyrax/abstract_message_service_spec.rb
|
2802
|
+
- spec/services/hyrax/adapters/nesting_index_adapter_spec.rb
|
2803
|
+
- spec/services/hyrax/admin_set_create_service_spec.rb
|
2804
|
+
- spec/services/hyrax/admin_set_member_service_spec.rb
|
2805
|
+
- spec/services/hyrax/admin_set_service_spec.rb
|
2806
|
+
- spec/services/hyrax/batch_create_failure_service_spec.rb
|
2807
|
+
- spec/services/hyrax/batch_create_success_service_spec.rb
|
2808
|
+
- spec/services/hyrax/change_content_depositor_service_spec.rb
|
2809
|
+
- spec/services/hyrax/collection_member_service_spec.rb
|
2810
|
+
- spec/services/hyrax/collection_types/create_service_spec.rb
|
2811
|
+
- spec/services/hyrax/collection_types/permissions_service_spec.rb
|
2812
|
+
- spec/services/hyrax/collections/collection_member_service_spec.rb
|
2813
|
+
- spec/services/hyrax/collections/managed_collections_service_spec.rb
|
2814
|
+
- spec/services/hyrax/collections/migration_service_spec.rb
|
2815
|
+
- spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb
|
2816
|
+
- spec/services/hyrax/collections/nested_collection_query_service_spec.rb
|
2817
|
+
- spec/services/hyrax/collections/permissions_create_service_spec.rb
|
2818
|
+
- spec/services/hyrax/collections/permissions_service_spec.rb
|
2819
|
+
- spec/services/hyrax/collections_service_spec.rb
|
2820
|
+
- spec/services/hyrax/curation_concern_spec.rb
|
2821
|
+
- spec/services/hyrax/database_migrator_spec.rb
|
2822
|
+
- spec/services/hyrax/default_middleware_stack_spec.rb
|
2823
|
+
- spec/services/hyrax/derivative_path_spec.rb
|
2824
|
+
- spec/services/hyrax/derivative_service_spec.rb
|
2825
|
+
- spec/services/hyrax/embargo_service_spec.rb
|
2826
|
+
- spec/services/hyrax/file_set_csv_service_spec.rb
|
2827
|
+
- spec/services/hyrax/file_set_derivatives_service_spec.rb
|
2828
|
+
- spec/services/hyrax/file_set_fixity_check_service_spec.rb
|
2829
|
+
- spec/services/hyrax/fixity_check_failure_service_spec.rb
|
2830
|
+
- spec/services/hyrax/graph_exporter_spec.rb
|
2831
|
+
- spec/services/hyrax/iiif_authorization_service_spec.rb
|
2832
|
+
- spec/services/hyrax/import_url_failure_service_spec.rb
|
2833
|
+
- spec/services/hyrax/lease_service_spec.rb
|
2834
|
+
- spec/services/hyrax/license_service_spec.rb
|
2835
|
+
- spec/services/hyrax/lock_manager_spec.rb
|
2836
|
+
- spec/services/hyrax/messenger_service_spec.rb
|
2837
|
+
- spec/services/hyrax/microdata_spec.rb
|
2838
|
+
- spec/services/hyrax/multiple_membership_checker_spec.rb
|
2839
|
+
- spec/services/hyrax/noid_spec.rb
|
2840
|
+
- spec/services/hyrax/permission_template_applicator_spec.rb
|
2841
|
+
- spec/services/hyrax/persist_derivatives_spec.rb
|
2842
|
+
- spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb
|
2843
|
+
- spec/services/hyrax/qa_select_service_spec.rb
|
2844
|
+
- spec/services/hyrax/quick_classification_query_spec.rb
|
2845
|
+
- spec/services/hyrax/repository_fixity_check_service_spec.rb
|
2846
|
+
- spec/services/hyrax/resource_types_service_spec.rb
|
2847
|
+
- spec/services/hyrax/rights_statement_service_spec.rb
|
2848
|
+
- spec/services/hyrax/statistics/collections/over_time_spec.rb
|
2849
|
+
- spec/services/hyrax/statistics/depositors/summary_spec.rb
|
2850
|
+
- spec/services/hyrax/statistics/file_sets/by_format_spec.rb
|
2851
|
+
- spec/services/hyrax/statistics/query_service_spec.rb
|
2852
|
+
- spec/services/hyrax/statistics/system_stats_spec.rb
|
2853
|
+
- spec/services/hyrax/statistics/users/over_time_spec.rb
|
2854
|
+
- spec/services/hyrax/statistics/works/by_depositor_spec.rb
|
2855
|
+
- spec/services/hyrax/statistics/works/by_resource_type_spec.rb
|
2856
|
+
- spec/services/hyrax/statistics/works/count_spec.rb
|
2857
|
+
- spec/services/hyrax/statistics/works/over_time_spec.rb
|
2858
|
+
- spec/services/hyrax/thumbnail_path_service_spec.rb
|
2859
|
+
- spec/services/hyrax/tolerant_select_service_spec.rb
|
2860
|
+
- spec/services/hyrax/user_stat_importer_spec.rb
|
2861
|
+
- spec/services/hyrax/versioning_service_spec.rb
|
2862
|
+
- spec/services/hyrax/work_query_service_spec.rb
|
2863
|
+
- spec/services/hyrax/workflow/action_taken_service_spec.rb
|
2864
|
+
- spec/services/hyrax/workflow/activate_object_spec.rb
|
2865
|
+
- spec/services/hyrax/workflow/changes_required_notification_spec.rb
|
2866
|
+
- spec/services/hyrax/workflow/deactivate_object_spec.rb
|
2867
|
+
- spec/services/hyrax/workflow/deposited_notification_spec.rb
|
2868
|
+
- spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
|
2869
|
+
- spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
|
2870
|
+
- spec/services/hyrax/workflow/method_generator_spec.rb
|
2871
|
+
- spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
|
2872
|
+
- spec/services/hyrax/workflow/notification_generator_spec.rb
|
2873
|
+
- spec/services/hyrax/workflow/notification_service_spec.rb
|
2874
|
+
- spec/services/hyrax/workflow/pending_review_notification_spec.rb
|
2875
|
+
- spec/services/hyrax/workflow/permission_generator_spec.rb
|
2876
|
+
- spec/services/hyrax/workflow/permission_query_spec.rb
|
2877
|
+
- spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb
|
2878
|
+
- spec/services/hyrax/workflow/sipity_actions_generator_spec.rb
|
2879
|
+
- spec/services/hyrax/workflow/state_machine_generator_spec.rb
|
2880
|
+
- spec/services/hyrax/workflow/status_list_service_spec.rb
|
2881
|
+
- spec/services/hyrax/workflow/workflow_factory_spec.rb
|
2882
|
+
- spec/services/hyrax/workflow/workflow_importer_spec.rb
|
2883
|
+
- spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb
|
2884
|
+
- spec/services/hyrax/workflow/workflow_schema_spec.rb
|
2885
|
+
- spec/services/hyrax/working_directory_spec.rb
|
2886
|
+
- spec/services/hyrax/works/managed_works_service_spec.rb
|
2887
|
+
- spec/spec_helper.rb
|
2888
|
+
- spec/strategies/hyrax/strategies/yaml_strategy_spec.rb
|
2889
|
+
- spec/support/controller_level_helpers.rb
|
2890
|
+
- spec/support/factory_helpers.rb
|
2891
|
+
- spec/support/fakes/fake_authority.rb
|
2892
|
+
- spec/support/features.rb
|
2893
|
+
- spec/support/features/batch_edit_actions.rb
|
2894
|
+
- spec/support/features/session_helpers.rb
|
2895
|
+
- spec/support/features/workflow.rb
|
2896
|
+
- spec/support/input_support.rb
|
2897
|
+
- spec/support/logging_formatter.rb
|
2898
|
+
- spec/support/matchers/api_responses.rb
|
2899
|
+
- spec/support/matchers/collection_type_property_matchers.rb
|
2900
|
+
- spec/support/matchers/response_matchers.rb
|
2901
|
+
- spec/support/optional_example.rb
|
2902
|
+
- spec/support/rake.rb
|
2903
|
+
- spec/support/selectors.rb
|
2904
|
+
- spec/support/spec_statistic.rb
|
2905
|
+
- spec/support/speedup.rb
|
2906
|
+
- spec/support/statistic_helper.rb
|
2907
|
+
- spec/tasks/rake_spec.rb
|
2908
|
+
- spec/test_app_templates/Gemfile.extra
|
2909
|
+
- spec/test_app_templates/disable_animations_in_test_environment.rb
|
2910
|
+
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
2911
|
+
- spec/views/_flash_msg.html.erb_spec.rb
|
2912
|
+
- spec/views/_user_util_links.html.erb_spec.rb
|
2913
|
+
- spec/views/catalog/_index_list_default.html.erb_spec.rb
|
2914
|
+
- spec/views/catalog/_search_form.html.erb_spec.rb
|
2915
|
+
- spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
|
2916
|
+
- spec/views/catalog/index.html.erb_spec.rb
|
2917
|
+
- spec/views/content_blocks/edit.html.erb_spec.rb
|
2918
|
+
- spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
|
2919
|
+
- spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
|
2920
|
+
- spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
|
2921
|
+
- spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb
|
2922
|
+
- spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb
|
2923
|
+
- spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb
|
2924
|
+
- spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
|
2925
|
+
- spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
|
2926
|
+
- spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
|
2927
|
+
- spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
|
2928
|
+
- spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
|
2929
|
+
- spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb
|
2930
|
+
- spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb
|
2931
|
+
- spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb
|
2932
|
+
- spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb
|
2933
|
+
- spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb
|
2934
|
+
- spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb
|
2935
|
+
- spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb
|
2936
|
+
- spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb
|
2937
|
+
- spec/views/hyrax/admin/features/index.html.erb_spec.rb
|
2938
|
+
- spec/views/hyrax/admin/stats/show.html.erb_spec.rb
|
2939
|
+
- spec/views/hyrax/admin/users/index.html.erb_spec.rb
|
2940
|
+
- spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb
|
2941
|
+
- spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb
|
2942
|
+
- spec/views/hyrax/base/_attributes.html.erb_spec.rb
|
2943
|
+
- spec/views/hyrax/base/_citations.html.erb_spec.rb
|
2944
|
+
- spec/views/hyrax/base/_form.html.erb_spec.rb
|
2945
|
+
- spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
|
2946
|
+
- spec/views/hyrax/base/_form_files.html.erb_spec.rb
|
2947
|
+
- spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
|
2948
|
+
- spec/views/hyrax/base/_form_progress.html.erb_spec.rb
|
2949
|
+
- spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
|
2950
|
+
- spec/views/hyrax/base/_form_rendering.html.erb_spec.rb
|
2951
|
+
- spec/views/hyrax/base/_items.html.erb_spec.rb
|
2952
|
+
- spec/views/hyrax/base/_member.html.erb_spec.rb
|
2953
|
+
- spec/views/hyrax/base/_relationships.html.erb_spec.rb
|
2954
|
+
- spec/views/hyrax/base/_show_actions.html.erb_spec.rb
|
2955
|
+
- spec/views/hyrax/base/_social_media.html.erb_spec.rb
|
2956
|
+
- spec/views/hyrax/base/edit.html.erb_spec.rb
|
2957
|
+
- spec/views/hyrax/base/file_manager.html.erb_spec.rb
|
2958
|
+
- spec/views/hyrax/base/show.html.erb_spec.rb
|
2959
|
+
- spec/views/hyrax/base/show.json.jbuilder_spec.rb
|
2960
|
+
- spec/views/hyrax/base/unauthorized.html.erb_spec.rb
|
2961
|
+
- spec/views/hyrax/base/unavailable.html.erb_spec.rb
|
2962
|
+
- spec/views/hyrax/batch_edits/check_all_spec.rb
|
2963
|
+
- spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
|
2964
|
+
- spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
|
2965
|
+
- spec/views/hyrax/citations/work.html.erb_spec.rb
|
2966
|
+
- spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
|
2967
|
+
- spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
|
2968
|
+
- spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
|
2969
|
+
- spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb
|
2970
|
+
- spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb
|
2971
|
+
- spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb
|
2972
|
+
- spec/views/hyrax/collections/show.html.erb_spec.rb
|
2973
|
+
- spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
|
2974
|
+
- spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb
|
2975
|
+
- spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
|
2976
|
+
- spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb
|
2977
|
+
- spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb
|
2978
|
+
- spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
|
2979
|
+
- spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
|
2980
|
+
- spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb
|
2981
|
+
- spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb
|
2982
|
+
- spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb
|
2983
|
+
- spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb
|
2984
|
+
- spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
|
2985
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
|
2986
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
|
2987
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
|
2988
|
+
- spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb
|
2989
|
+
- spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb
|
2990
|
+
- spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb
|
2991
|
+
- spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb
|
2992
|
+
- spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb
|
2993
|
+
- spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb
|
2994
|
+
- spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
|
2995
|
+
- spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
|
2996
|
+
- spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb
|
2997
|
+
- spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
|
2998
|
+
- spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb
|
2999
|
+
- spec/views/hyrax/dashboard/show_user_spec.rb
|
3000
|
+
- spec/views/hyrax/depositors/index.html.erb_spec.rb
|
3001
|
+
- spec/views/hyrax/embargoes/index.html.erb_spec.rb
|
3002
|
+
- spec/views/hyrax/file_sets/_actions.html.erb_spec.rb
|
3003
|
+
- spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
|
3004
|
+
- spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
|
3005
|
+
- spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
|
3006
|
+
- spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb
|
3007
|
+
- spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb
|
3008
|
+
- spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb
|
3009
|
+
- spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb
|
3010
|
+
- spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb
|
3011
|
+
- spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb
|
3012
|
+
- spec/views/hyrax/file_sets/show.html.erb_spec.rb
|
3013
|
+
- spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb
|
3014
|
+
- spec/views/hyrax/homepage/_announcement.html.erb_spec.rb
|
3015
|
+
- spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
|
3016
|
+
- spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
|
3017
|
+
- spec/views/hyrax/homepage/index.html.erb_spec.rb
|
3018
|
+
- spec/views/hyrax/leases/index.html.erb_spec.rb
|
3019
|
+
- spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb
|
3020
|
+
- spec/views/hyrax/my/_search_header.html.erb_spec.rb
|
3021
|
+
- spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
|
3022
|
+
- spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
|
3023
|
+
- spec/views/hyrax/my/collections/index.html.erb_spec.rb
|
3024
|
+
- spec/views/hyrax/my/facet.html.erb_spec.rb
|
3025
|
+
- spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
|
3026
|
+
- spec/views/hyrax/my/works/index.html.erb_spec.rb
|
3027
|
+
- spec/views/hyrax/permissions/confirm.html.erb_spec.rb
|
3028
|
+
- spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
|
3029
|
+
- spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
|
3030
|
+
- spec/views/hyrax/stats/file.html.erb_spec.rb
|
3031
|
+
- spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
|
3032
|
+
- spec/views/hyrax/users/_user_info.html.erb_spec.rb
|
3033
|
+
- spec/views/hyrax/users/index.html.erb_spec.rb
|
3034
|
+
- spec/views/hyrax/users/show.html.erb_spec.rb
|
3035
|
+
- spec/views/layouts/error.html.erb_spec.rb
|
3036
|
+
- spec/views/pages/edit.html.erb_spec.rb
|
3037
|
+
- spec/views/pages/show.html.erb_spec.rb
|
3038
|
+
- spec/views/records/edit_fields/_based_near.html.erb_spec.rb
|
3039
|
+
- spec/views/records/edit_fields/_description.html.erb_spec.rb
|
3040
|
+
- spec/views/records/edit_fields/_language.html.erb_spec.rb
|
3041
|
+
- spec/views/records/edit_fields/_subject.html.erb_spec.rb
|
3042
|
+
- spec/views/shared/select_work_type_modal.html.erb_spec.rb
|
2437
3043
|
- tasks/hyrax_dev.rake
|
2438
3044
|
- template.rb
|
2439
3045
|
- vendor/assets/fonts/fontawesome-webfont.svg
|
@@ -2458,7 +3064,7 @@ homepage: http://github.com/samvera/hyrax
|
|
2458
3064
|
licenses:
|
2459
3065
|
- Apache-2.0
|
2460
3066
|
metadata: {}
|
2461
|
-
post_install_message:
|
3067
|
+
post_install_message:
|
2462
3068
|
rdoc_options: []
|
2463
3069
|
require_paths:
|
2464
3070
|
- lib
|
@@ -2469,16 +3075,714 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
2469
3075
|
version: '2.3'
|
2470
3076
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
2471
3077
|
requirements:
|
2472
|
-
- - "
|
3078
|
+
- - ">"
|
2473
3079
|
- !ruby/object:Gem::Version
|
2474
|
-
version:
|
3080
|
+
version: 1.3.1
|
2475
3081
|
requirements: []
|
2476
|
-
|
2477
|
-
|
3082
|
+
rubyforge_project:
|
3083
|
+
rubygems_version: 2.6.13
|
3084
|
+
signing_key:
|
2478
3085
|
specification_version: 4
|
2479
3086
|
summary: Hyrax is a front-end based on the robust Samvera framework, providing a user
|
2480
3087
|
interface for common repository features. Hyrax offers the ability to create repository
|
2481
3088
|
object types on demand, to deposit content via multiple workflows, and to describe
|
2482
3089
|
content with flexible metadata. Numerous optional features may be turned on in the
|
2483
3090
|
administrative dashboard or added through plugins.
|
2484
|
-
test_files:
|
3091
|
+
test_files:
|
3092
|
+
- spec/.gitignore
|
3093
|
+
- spec/abilities/ability_spec.rb
|
3094
|
+
- spec/abilities/admin_ability_spec.rb
|
3095
|
+
- spec/abilities/admin_set_ability_spec.rb
|
3096
|
+
- spec/abilities/collection_ability_spec.rb
|
3097
|
+
- spec/abilities/collection_type_ability_spec.rb
|
3098
|
+
- spec/abilities/embargo_and_lease_ability_spec.rb
|
3099
|
+
- spec/abilities/file_set_abilities_spec.rb
|
3100
|
+
- spec/abilities/generic_work_abilities_spec.rb
|
3101
|
+
- spec/abilities/operation_ability_spec.rb
|
3102
|
+
- spec/abilities/permission_template_ability_spec.rb
|
3103
|
+
- spec/abilities/proxies_and_transfer_abilities_spec.rb
|
3104
|
+
- spec/abilities/solr_document_ability_spec.rb
|
3105
|
+
- spec/actors/hyrax/actors/apply_order_actor_spec.rb
|
3106
|
+
- spec/actors/hyrax/actors/apply_permission_template_actor_spec.rb
|
3107
|
+
- spec/actors/hyrax/actors/attach_members_actor_spec.rb
|
3108
|
+
- spec/actors/hyrax/actors/cleanup_file_sets_actor_spec.rb
|
3109
|
+
- spec/actors/hyrax/actors/cleanup_trophies_actor_spec.rb
|
3110
|
+
- spec/actors/hyrax/actors/collections_membership_actor_spec.rb
|
3111
|
+
- spec/actors/hyrax/actors/create_with_files_actor_spec.rb
|
3112
|
+
- spec/actors/hyrax/actors/create_with_files_ordered_members_actor_spec.rb
|
3113
|
+
- spec/actors/hyrax/actors/create_with_remote_files_actor_spec.rb
|
3114
|
+
- spec/actors/hyrax/actors/create_with_remote_files_ordered_members_actor_spec.rb
|
3115
|
+
- spec/actors/hyrax/actors/default_admin_set_actor_spec.rb
|
3116
|
+
- spec/actors/hyrax/actors/embargo_actor_spec.rb
|
3117
|
+
- spec/actors/hyrax/actors/featured_work_actor_spec.rb
|
3118
|
+
- spec/actors/hyrax/actors/file_actor_spec.rb
|
3119
|
+
- spec/actors/hyrax/actors/file_set_actor_spec.rb
|
3120
|
+
- spec/actors/hyrax/actors/file_set_ordered_members_actor_spec.rb
|
3121
|
+
- spec/actors/hyrax/actors/generic_work_actor_spec.rb
|
3122
|
+
- spec/actors/hyrax/actors/initialize_workflow_actor_spec.rb
|
3123
|
+
- spec/actors/hyrax/actors/interpret_visibility_actor_spec.rb
|
3124
|
+
- spec/actors/hyrax/actors/lease_actor_spec.rb
|
3125
|
+
- spec/actors/hyrax/actors/model_actor_spec.rb
|
3126
|
+
- spec/actors/hyrax/actors/optimistic_lock_validator_spec.rb
|
3127
|
+
- spec/actors/hyrax/actors/ordered_members_actor_spec.rb
|
3128
|
+
- spec/actors/hyrax/actors/transactional_request_spec.rb
|
3129
|
+
- spec/actors/hyrax/actors/transfer_request_actor_spec.rb
|
3130
|
+
- spec/authorities/qa/authorities/collections_spec.rb
|
3131
|
+
- spec/authorities/qa/authorities/find_works_spec.rb
|
3132
|
+
- spec/channels/hyrax/application_cable/channel_spec.rb
|
3133
|
+
- spec/channels/hyrax/application_cable/connection_spec.rb
|
3134
|
+
- spec/channels/hyrax/notifications_channel_spec.rb
|
3135
|
+
- spec/config/hyrax_events_spec.rb
|
3136
|
+
- spec/controllers/catalog_controller_spec.rb
|
3137
|
+
- spec/controllers/hyrax/accepts_batches_controller_spec.rb
|
3138
|
+
- spec/controllers/hyrax/admin/admin_sets_controller_spec.rb
|
3139
|
+
- spec/controllers/hyrax/admin/appearances_controller_spec.rb
|
3140
|
+
- spec/controllers/hyrax/admin/collection_type_participants_controller_spec.rb
|
3141
|
+
- spec/controllers/hyrax/admin/collection_types_controller_spec.rb
|
3142
|
+
- spec/controllers/hyrax/admin/features_controller_spec.rb
|
3143
|
+
- spec/controllers/hyrax/admin/permission_template_accesses_controller_spec.rb
|
3144
|
+
- spec/controllers/hyrax/admin/permission_templates_controller_spec.rb
|
3145
|
+
- spec/controllers/hyrax/admin/stats_controller_spec.rb
|
3146
|
+
- spec/controllers/hyrax/admin/strategies_controller_spec.rb
|
3147
|
+
- spec/controllers/hyrax/admin/users_controller_spec.rb
|
3148
|
+
- spec/controllers/hyrax/admin/workflow_roles_controller_spec.rb
|
3149
|
+
- spec/controllers/hyrax/admin/workflows_controller_spec.rb
|
3150
|
+
- spec/controllers/hyrax/api/items_controller_spec.rb
|
3151
|
+
- spec/controllers/hyrax/api/zotero_controller_spec.rb
|
3152
|
+
- spec/controllers/hyrax/batch_edits_controller_spec.rb
|
3153
|
+
- spec/controllers/hyrax/batch_uploads_controller_spec.rb
|
3154
|
+
- spec/controllers/hyrax/citations_controller_spec.rb
|
3155
|
+
- spec/controllers/hyrax/collections_controller_spec.rb
|
3156
|
+
- spec/controllers/hyrax/contact_form_controller_spec.rb
|
3157
|
+
- spec/controllers/hyrax/content_blocks_controller_spec.rb
|
3158
|
+
- spec/controllers/hyrax/dashboard/collection_members_controller_spec.rb
|
3159
|
+
- spec/controllers/hyrax/dashboard/collections_controller_spec.rb
|
3160
|
+
- spec/controllers/hyrax/dashboard/nest_collections_controller_spec.rb
|
3161
|
+
- spec/controllers/hyrax/dashboard/profiles_controller_spec.rb
|
3162
|
+
- spec/controllers/hyrax/dashboard/works_controller_spec.rb
|
3163
|
+
- spec/controllers/hyrax/dashboard_controller_spec.rb
|
3164
|
+
- spec/controllers/hyrax/depositors_controller_spec.rb
|
3165
|
+
- spec/controllers/hyrax/downloads_controller_spec.rb
|
3166
|
+
- spec/controllers/hyrax/embargoes_controller_spec.rb
|
3167
|
+
- spec/controllers/hyrax/featured_work_lists_controller_spec.rb
|
3168
|
+
- spec/controllers/hyrax/featured_works_controller_spec.rb
|
3169
|
+
- spec/controllers/hyrax/file_sets_controller_spec.rb
|
3170
|
+
- spec/controllers/hyrax/fixity_checks_controller_spec.rb
|
3171
|
+
- spec/controllers/hyrax/generic_works_controller_json_spec.rb
|
3172
|
+
- spec/controllers/hyrax/generic_works_controller_spec.rb
|
3173
|
+
- spec/controllers/hyrax/homepage_controller_spec.rb
|
3174
|
+
- spec/controllers/hyrax/leases_controller_spec.rb
|
3175
|
+
- spec/controllers/hyrax/my/collections_controller_spec.rb
|
3176
|
+
- spec/controllers/hyrax/my/highlights_controller_spec.rb
|
3177
|
+
- spec/controllers/hyrax/my/shares_controller_spec.rb
|
3178
|
+
- spec/controllers/hyrax/my/works_controller_spec.rb
|
3179
|
+
- spec/controllers/hyrax/notifications_controller_spec.rb
|
3180
|
+
- spec/controllers/hyrax/operations_controller_spec.rb
|
3181
|
+
- spec/controllers/hyrax/pages_controller_spec.rb
|
3182
|
+
- spec/controllers/hyrax/permissions_controller_spec.rb
|
3183
|
+
- spec/controllers/hyrax/resource_sync_controller_spec.rb
|
3184
|
+
- spec/controllers/hyrax/single_use_links_controller_spec.rb
|
3185
|
+
- spec/controllers/hyrax/single_use_links_viewer_controller_spec.rb
|
3186
|
+
- spec/controllers/hyrax/static_controller_spec.rb
|
3187
|
+
- spec/controllers/hyrax/stats_controller_spec.rb
|
3188
|
+
- spec/controllers/hyrax/transfers_controller_spec.rb
|
3189
|
+
- spec/controllers/hyrax/trophies_controller_spec.rb
|
3190
|
+
- spec/controllers/hyrax/uploads_controller_spec.rb
|
3191
|
+
- spec/controllers/hyrax/users_controller_spec.rb
|
3192
|
+
- spec/controllers/hyrax/workflow_actions_controller_spec.rb
|
3193
|
+
- spec/conversions/power_converters/polymorphic_type_spec.rb
|
3194
|
+
- spec/conversions/power_converters/sipity_action_name_spec.rb
|
3195
|
+
- spec/conversions/power_converters/sipity_action_spec.rb
|
3196
|
+
- spec/conversions/power_converters/sipity_agent_spec.rb
|
3197
|
+
- spec/conversions/power_converters/sipity_entity_spec.rb
|
3198
|
+
- spec/conversions/power_converters/sipity_role_spec.rb
|
3199
|
+
- spec/conversions/power_converters/sipity_workflow_id_spec.rb
|
3200
|
+
- spec/conversions/power_converters/sipity_workflow_state_spec.rb
|
3201
|
+
- spec/factories/admin_sets.rb
|
3202
|
+
- spec/factories/admin_sets_lw.rb
|
3203
|
+
- spec/factories/api_items.rb
|
3204
|
+
- spec/factories/collection_branding_infos.rb
|
3205
|
+
- spec/factories/collection_type_participants.rb
|
3206
|
+
- spec/factories/collection_types.rb
|
3207
|
+
- spec/factories/collections.rb
|
3208
|
+
- spec/factories/collections_factory.rb
|
3209
|
+
- spec/factories/content_blocks.rb
|
3210
|
+
- spec/factories/featured_works.rb
|
3211
|
+
- spec/factories/file_sets.rb
|
3212
|
+
- spec/factories/generic_works.rb
|
3213
|
+
- spec/factories/object_id.rb
|
3214
|
+
- spec/factories/operations.rb
|
3215
|
+
- spec/factories/permission_template_accesses.rb
|
3216
|
+
- spec/factories/permission_templates.rb
|
3217
|
+
- spec/factories/proxy_deposit_requests.rb
|
3218
|
+
- spec/factories/single_use_links.rb
|
3219
|
+
- spec/factories/sipity_entities.rb
|
3220
|
+
- spec/factories/uploaded_files.rb
|
3221
|
+
- spec/factories/users.rb
|
3222
|
+
- spec/factories/workflow_actions.rb
|
3223
|
+
- spec/factories/workflow_states.rb
|
3224
|
+
- spec/factories/workflows.rb
|
3225
|
+
- spec/factory_tests/adminsets_factory_spec.rb
|
3226
|
+
- spec/factory_tests/collections_factory_spec.rb
|
3227
|
+
- spec/features/admin_spec.rb
|
3228
|
+
- spec/features/batch_create_spec.rb
|
3229
|
+
- spec/features/batch_edit_spec.rb
|
3230
|
+
- spec/features/browse_catalog_spec.rb
|
3231
|
+
- spec/features/browse_dashboard_works_spec.rb
|
3232
|
+
- spec/features/catalog_search_spec.rb
|
3233
|
+
- spec/features/collection_multi_membership_spec.rb
|
3234
|
+
- spec/features/collection_spec.rb
|
3235
|
+
- spec/features/collection_type_spec.rb
|
3236
|
+
- spec/features/contact_form_spec.rb
|
3237
|
+
- spec/features/create_child_work_spec.rb
|
3238
|
+
- spec/features/create_work_admin_spec.rb
|
3239
|
+
- spec/features/create_work_spec.rb
|
3240
|
+
- spec/features/dashboard/all_works.rb
|
3241
|
+
- spec/features/dashboard/collection_spec.rb
|
3242
|
+
- spec/features/dashboard/display_admin_dashboard_spec.rb
|
3243
|
+
- spec/features/dashboard/display_dashboard_spec.rb
|
3244
|
+
- spec/features/delete_work_spec.rb
|
3245
|
+
- spec/features/edit_content_block_admin_spec.rb
|
3246
|
+
- spec/features/edit_file_spec.rb
|
3247
|
+
- spec/features/edit_work_spec.rb
|
3248
|
+
- spec/features/embargo_spec.rb
|
3249
|
+
- spec/features/homepage_spec.rb
|
3250
|
+
- spec/features/lease_spec.rb
|
3251
|
+
- spec/features/notifications_spec.rb
|
3252
|
+
- spec/features/ownership_transfer_spec.rb
|
3253
|
+
- spec/features/proxy_spec.rb
|
3254
|
+
- spec/features/search_spec.rb
|
3255
|
+
- spec/features/static_pages_spec.rb
|
3256
|
+
- spec/features/users_spec.rb
|
3257
|
+
- spec/features/work_generator_spec.rb
|
3258
|
+
- spec/features/work_show_spec.rb
|
3259
|
+
- spec/features/workflow_roles_spec.rb
|
3260
|
+
- spec/features/workflow_state_changes_spec.rb
|
3261
|
+
- spec/fixtures/1.5mb-avatar.jpg
|
3262
|
+
- spec/fixtures/4-20.png
|
3263
|
+
- spec/fixtures/Example.ogg
|
3264
|
+
- spec/fixtures/authorities/licenses.yml
|
3265
|
+
- spec/fixtures/charter.docx
|
3266
|
+
- spec/fixtures/config/schema_org.yml
|
3267
|
+
- spec/fixtures/config/schema_org_second.yml
|
3268
|
+
- spec/fixtures/countdown.avi
|
3269
|
+
- spec/fixtures/docx_fits.xml
|
3270
|
+
- spec/fixtures/dublin_core_rdf_descMetadata.nt
|
3271
|
+
- spec/fixtures/hyrax/.gitignore
|
3272
|
+
- spec/fixtures/hyrax/hyrax_test4.pdf
|
3273
|
+
- spec/fixtures/hyrax/hyrax_test5.mp3
|
3274
|
+
- spec/fixtures/hyrax_generic_stub.txt
|
3275
|
+
- spec/fixtures/icons.zip
|
3276
|
+
- spec/fixtures/image.jp2
|
3277
|
+
- spec/fixtures/image.jpg
|
3278
|
+
- spec/fixtures/image.png
|
3279
|
+
- spec/fixtures/jp2_fits.xml
|
3280
|
+
- spec/fixtures/jpg_fits.xml
|
3281
|
+
- spec/fixtures/mp3_fits.xml
|
3282
|
+
- spec/fixtures/pdf_fits.xml
|
3283
|
+
- spec/fixtures/piano_note.wav
|
3284
|
+
- spec/fixtures/png_fits.xml
|
3285
|
+
- spec/fixtures/sample_mpeg4.mp4
|
3286
|
+
- spec/fixtures/small_file.txt
|
3287
|
+
- spec/fixtures/spoken-text.m4a
|
3288
|
+
- spec/fixtures/txt_fits.xml
|
3289
|
+
- spec/fixtures/world.png
|
3290
|
+
- spec/fixtures/xls_fits.xml
|
3291
|
+
- spec/fixtures/xml_fits.xml
|
3292
|
+
- spec/forms/hyrax/forms/admin/appearance_spec.rb
|
3293
|
+
- spec/forms/hyrax/forms/admin/collection_type_form_spec.rb
|
3294
|
+
- spec/forms/hyrax/forms/admin/collection_type_participant_form_spec.rb
|
3295
|
+
- spec/forms/hyrax/forms/admin_set_form_spec.rb
|
3296
|
+
- spec/forms/hyrax/forms/batch_edit_form_spec.rb
|
3297
|
+
- spec/forms/hyrax/forms/batch_upload_form_spec.rb
|
3298
|
+
- spec/forms/hyrax/forms/collection_form_spec.rb
|
3299
|
+
- spec/forms/hyrax/forms/dashboard/nest_collection_form_spec.rb
|
3300
|
+
- spec/forms/hyrax/forms/file_manager_form_spec.rb
|
3301
|
+
- spec/forms/hyrax/forms/file_set_edit_form_spec.rb
|
3302
|
+
- spec/forms/hyrax/forms/permission_template_form_spec.rb
|
3303
|
+
- spec/forms/hyrax/forms/work_form_spec.rb
|
3304
|
+
- spec/forms/hyrax/forms/workflow_action_form_spec.rb
|
3305
|
+
- spec/forms/hyrax/forms/workflow_responsibility_form_spec.rb
|
3306
|
+
- spec/forms/hyrax/generic_work_form_spec.rb
|
3307
|
+
- spec/helpers/blacklight_helper_spec.rb
|
3308
|
+
- spec/helpers/hyrax/ability_helper_spec.rb
|
3309
|
+
- spec/helpers/hyrax/batch_edits_helper_spec.rb
|
3310
|
+
- spec/helpers/hyrax/charts_helper_spec.rb
|
3311
|
+
- spec/helpers/hyrax/citations_behaviors/formatters/chicago_formatter_spec.rb
|
3312
|
+
- spec/helpers/hyrax/collections_helper_spec.rb
|
3313
|
+
- spec/helpers/hyrax/content_block_helper_spec.rb
|
3314
|
+
- spec/helpers/hyrax/dashboard_helper_behavior_spec.rb
|
3315
|
+
- spec/helpers/hyrax/file_set_helper_spec.rb
|
3316
|
+
- spec/helpers/hyrax/iiif_helper_spec.rb
|
3317
|
+
- spec/helpers/hyrax/trophy_helper_spec.rb
|
3318
|
+
- spec/helpers/hyrax_helper_spec.rb
|
3319
|
+
- spec/hyrax/transactions/create_work_spec.rb
|
3320
|
+
- spec/hyrax/transactions/steps/apply_permission_template_spec.rb
|
3321
|
+
- spec/hyrax/transactions/steps/ensure_admin_set_spec.rb
|
3322
|
+
- spec/hyrax/transactions/steps/ensure_permission_template_spec.rb
|
3323
|
+
- spec/hyrax/transactions/steps/save_work_spec.rb
|
3324
|
+
- spec/hyrax/transactions/steps/set_default_admin_set_spec.rb
|
3325
|
+
- spec/hyrax/transactions/steps/set_modified_date_spec.rb
|
3326
|
+
- spec/hyrax/transactions/steps/set_uploaded_date_spec.rb
|
3327
|
+
- spec/indexers/hyrax/collection_indexer_spec.rb
|
3328
|
+
- spec/indexers/hyrax/file_set_indexer_spec.rb
|
3329
|
+
- spec/indexers/hyrax/generic_work_indexer_spec.rb
|
3330
|
+
- spec/indexers/hyrax/repository_reindexer_spec.rb
|
3331
|
+
- spec/inputs/controlled_vocabulary_input_spec.rb
|
3332
|
+
- spec/inputs/multifile_input_spec.rb
|
3333
|
+
- spec/javascripts/authority_select_spec.js
|
3334
|
+
- spec/javascripts/autocomplete_spec.js.coffee
|
3335
|
+
- spec/javascripts/batch_select_spec.js
|
3336
|
+
- spec/javascripts/charts_spec.coffee
|
3337
|
+
- spec/javascripts/checklist_item_spec.js
|
3338
|
+
- spec/javascripts/deposit_agreement_spec.js
|
3339
|
+
- spec/javascripts/file_manager_member_spec.coffee
|
3340
|
+
- spec/javascripts/file_manager_sorting_spec.coffee
|
3341
|
+
- spec/javascripts/fixtures/chart_example.html
|
3342
|
+
- spec/javascripts/fixtures/dashboard_batch_forms.html
|
3343
|
+
- spec/javascripts/fixtures/file_manager_member.html
|
3344
|
+
- spec/javascripts/fixtures/save_button.html
|
3345
|
+
- spec/javascripts/fixtures/sortable.html
|
3346
|
+
- spec/javascripts/fixtures/sul_table.html
|
3347
|
+
- spec/javascripts/grant_spec.js
|
3348
|
+
- spec/javascripts/helpers/jasmine-ajax.js
|
3349
|
+
- spec/javascripts/helpers/jasmine-jquery.js
|
3350
|
+
- spec/javascripts/helpers/test_fixtures.js.coffee
|
3351
|
+
- spec/javascripts/helpers/test_responses.js
|
3352
|
+
- spec/javascripts/jasmine_spec.rb
|
3353
|
+
- spec/javascripts/relationships_control_spec.js.coffee
|
3354
|
+
- spec/javascripts/required_field_spec.js
|
3355
|
+
- spec/javascripts/save_manager_spec.coffee
|
3356
|
+
- spec/javascripts/save_work_spec.js
|
3357
|
+
- spec/javascripts/settings_spec.js
|
3358
|
+
- spec/javascripts/single_use_links_spec.coffee
|
3359
|
+
- spec/javascripts/support/jasmine.yml
|
3360
|
+
- spec/javascripts/support/jasmine_helper.rb
|
3361
|
+
- spec/javascripts/tabs_spec.js.coffee
|
3362
|
+
- spec/javascripts/uploaded_files_spec.js
|
3363
|
+
- spec/javascripts/visibility_component_spec.js
|
3364
|
+
- spec/jobs/attach_files_to_work_job_spec.rb
|
3365
|
+
- spec/jobs/attach_files_to_work_with_ordered_members_job_spec.rb
|
3366
|
+
- spec/jobs/batch_create_job_spec.rb
|
3367
|
+
- spec/jobs/characterize_job_spec.rb
|
3368
|
+
- spec/jobs/content_delete_event_job_spec.rb
|
3369
|
+
- spec/jobs/content_deposit_event_job_spec.rb
|
3370
|
+
- spec/jobs/content_depositor_change_event_job_spec.rb
|
3371
|
+
- spec/jobs/content_new_version_event_job_spec.rb
|
3372
|
+
- spec/jobs/content_restored_version_event_job_spec.rb
|
3373
|
+
- spec/jobs/content_update_event_job_spec.rb
|
3374
|
+
- spec/jobs/create_derivatives_job_spec.rb
|
3375
|
+
- spec/jobs/create_work_job_spec.rb
|
3376
|
+
- spec/jobs/file_set_attached_event_job_spec.rb
|
3377
|
+
- spec/jobs/fixity_check_job_spec.rb
|
3378
|
+
- spec/jobs/hyrax/grant_edit_job_spec.rb
|
3379
|
+
- spec/jobs/hyrax/grant_edit_to_members_job_spec.rb
|
3380
|
+
- spec/jobs/hyrax/grant_read_job_spec.rb
|
3381
|
+
- spec/jobs/hyrax/grant_read_to_members_job_spec.rb
|
3382
|
+
- spec/jobs/hyrax/revoke_edit_from_members_job_spec.rb
|
3383
|
+
- spec/jobs/hyrax/revoke_edit_job_spec.rb
|
3384
|
+
- spec/jobs/import_export_job_spec.rb
|
3385
|
+
- spec/jobs/import_url_job_spec.rb
|
3386
|
+
- spec/jobs/ingest_local_file_job_spec.rb
|
3387
|
+
- spec/jobs/inherit_permissions_job_spec.rb
|
3388
|
+
- spec/jobs/stream_notifications_job_spec.rb
|
3389
|
+
- spec/jobs/user_edit_profile_event_job_spec.rb
|
3390
|
+
- spec/jobs/visibility_copy_job_spec.rb
|
3391
|
+
- spec/lib/hyrax/analytics_spec.rb
|
3392
|
+
- spec/lib/hyrax/arkivo/actor_spec.rb
|
3393
|
+
- spec/lib/hyrax/arkivo/create_subscription_job_spec.rb
|
3394
|
+
- spec/lib/hyrax/arkivo/metadata_munger_spec.rb
|
3395
|
+
- spec/lib/hyrax/arkivo/schema_validator_spec.rb
|
3396
|
+
- spec/lib/hyrax/arkivo_spec.rb
|
3397
|
+
- spec/lib/hyrax/collections/search_service_spec.rb
|
3398
|
+
- spec/lib/hyrax/configuration_spec.rb
|
3399
|
+
- spec/lib/hyrax/controlled_vocabulary/importer/downloader_spec.rb
|
3400
|
+
- spec/lib/hyrax/controlled_vocabulary/importer/language_spec.rb
|
3401
|
+
- spec/lib/hyrax/move_all_works_to_admin_set_spec.rb
|
3402
|
+
- spec/lib/hyrax/name_spec.rb
|
3403
|
+
- spec/lib/hyrax/redis_event_store_spec.rb
|
3404
|
+
- spec/lib/hyrax/resource_sync/capability_list_writer_spec.rb
|
3405
|
+
- spec/lib/hyrax/resource_sync/change_list_writer_spec.rb
|
3406
|
+
- spec/lib/hyrax/resource_sync/resource_list_writer_spec.rb
|
3407
|
+
- spec/lib/hyrax/resource_sync/source_description_writer_spec.rb
|
3408
|
+
- spec/lib/hyrax/role_registry_spec.rb
|
3409
|
+
- spec/lib/hyrax/search_state_spec.rb
|
3410
|
+
- spec/lib/hyrax/zotero/config_spec.rb
|
3411
|
+
- spec/lib/hyrax/zotero_spec.rb
|
3412
|
+
- spec/lib/hyrax_spec.rb
|
3413
|
+
- spec/models/admin_set_spec.rb
|
3414
|
+
- spec/models/batch_upload_item_spec.rb
|
3415
|
+
- spec/models/checksum_audit_log_spec.rb
|
3416
|
+
- spec/models/collection_branding_info_spec.rb
|
3417
|
+
- spec/models/collection_spec.rb
|
3418
|
+
- spec/models/concerns/hyrax/collection_nesting_spec.rb
|
3419
|
+
- spec/models/content_block_spec.rb
|
3420
|
+
- spec/models/featured_work_list_spec.rb
|
3421
|
+
- spec/models/featured_work_spec.rb
|
3422
|
+
- spec/models/file_download_stat_spec.rb
|
3423
|
+
- spec/models/file_set_spec.rb
|
3424
|
+
- spec/models/file_view_stat_spec.rb
|
3425
|
+
- spec/models/flipflop_spec.rb
|
3426
|
+
- spec/models/generic_work_spec.rb
|
3427
|
+
- spec/models/hyrax/batch_create_operation_spec.rb
|
3428
|
+
- spec/models/hyrax/collection_type_participant_spec.rb
|
3429
|
+
- spec/models/hyrax/collection_type_spec.rb
|
3430
|
+
- spec/models/hyrax/download_spec.rb
|
3431
|
+
- spec/models/hyrax/operation_spec.rb
|
3432
|
+
- spec/models/hyrax/pageview_spec.rb
|
3433
|
+
- spec/models/hyrax/permission_template_access_spec.rb
|
3434
|
+
- spec/models/hyrax/permission_template_spec.rb
|
3435
|
+
- spec/models/hyrax/permissions/readable_permissions_spec.rb
|
3436
|
+
- spec/models/hyrax/permissions/writable_permissions_spec.rb
|
3437
|
+
- spec/models/hyrax/uploaded_file_spec.rb
|
3438
|
+
- spec/models/hyrax/user_usage_stats_spec.rb
|
3439
|
+
- spec/models/hyrax/work_behavior_spec.rb
|
3440
|
+
- spec/models/job_io_wrapper_spec.rb
|
3441
|
+
- spec/models/proxy_deposit_request_spec.rb
|
3442
|
+
- spec/models/single_use_link_spec.rb
|
3443
|
+
- spec/models/sipity/agent_spec.rb
|
3444
|
+
- spec/models/sipity/comment_spec.rb
|
3445
|
+
- spec/models/sipity/entity_spec.rb
|
3446
|
+
- spec/models/sipity/entity_specific_responsibility_spec.rb
|
3447
|
+
- spec/models/sipity/notifiable_context_spec.rb
|
3448
|
+
- spec/models/sipity/notification_recipient_spec.rb
|
3449
|
+
- spec/models/sipity/notification_spec.rb
|
3450
|
+
- spec/models/sipity/role_spec.rb
|
3451
|
+
- spec/models/sipity/workflow_action_spec.rb
|
3452
|
+
- spec/models/sipity/workflow_responsibility_spec.rb
|
3453
|
+
- spec/models/sipity/workflow_role_spec.rb
|
3454
|
+
- spec/models/sipity/workflow_spec.rb
|
3455
|
+
- spec/models/sipity/workflow_state_action_permission_spec.rb
|
3456
|
+
- spec/models/sipity/workflow_state_action_spec.rb
|
3457
|
+
- spec/models/sipity/workflow_state_spec.rb
|
3458
|
+
- spec/models/solr_document_spec.rb
|
3459
|
+
- spec/models/trophy_spec.rb
|
3460
|
+
- spec/models/user_mailbox_spec.rb
|
3461
|
+
- spec/models/user_spec.rb
|
3462
|
+
- spec/models/work_view_stat_spec.rb
|
3463
|
+
- spec/presenters/hyrax/admin/dashboard_presenter_spec.rb
|
3464
|
+
- spec/presenters/hyrax/admin/repository_growth_presenter_spec.rb
|
3465
|
+
- spec/presenters/hyrax/admin/repository_object_presenter_spec.rb
|
3466
|
+
- spec/presenters/hyrax/admin/user_activity_presenter_spec.rb
|
3467
|
+
- spec/presenters/hyrax/admin/users_presenter_spec.rb
|
3468
|
+
- spec/presenters/hyrax/admin/workflow_role_presenter_spec.rb
|
3469
|
+
- spec/presenters/hyrax/admin/workflow_roles_presenter_spec.rb
|
3470
|
+
- spec/presenters/hyrax/admin_set_options_presenter_spec.rb
|
3471
|
+
- spec/presenters/hyrax/admin_set_presenter_spec.rb
|
3472
|
+
- spec/presenters/hyrax/admin_stats_presenter_spec.rb
|
3473
|
+
- spec/presenters/hyrax/collection_options_presenter_spec.rb
|
3474
|
+
- spec/presenters/hyrax/collection_presenter_spec.rb
|
3475
|
+
- spec/presenters/hyrax/dashboard/user_presenter_spec.rb
|
3476
|
+
- spec/presenters/hyrax/embargo_presenter_spec.rb
|
3477
|
+
- spec/presenters/hyrax/file_set_presenter_spec.rb
|
3478
|
+
- spec/presenters/hyrax/file_usage_spec.rb
|
3479
|
+
- spec/presenters/hyrax/fixity_status_presenter_spec.rb
|
3480
|
+
- spec/presenters/hyrax/homepage_presenter_spec.rb
|
3481
|
+
- spec/presenters/hyrax/inspect_work_presenter_spec.rb
|
3482
|
+
- spec/presenters/hyrax/lease_presenter_spec.rb
|
3483
|
+
- spec/presenters/hyrax/member_presenter_factory_spec.rb
|
3484
|
+
- spec/presenters/hyrax/menu_presenter_spec.rb
|
3485
|
+
- spec/presenters/hyrax/permission_badge_spec.rb
|
3486
|
+
- spec/presenters/hyrax/presenter_factory_spec.rb
|
3487
|
+
- spec/presenters/hyrax/presenter_renderer_spec.rb
|
3488
|
+
- spec/presenters/hyrax/select_collection_type_list_presenter_spec.rb
|
3489
|
+
- spec/presenters/hyrax/select_collection_type_presenter_spec.rb
|
3490
|
+
- spec/presenters/hyrax/select_type_list_presenter_spec.rb
|
3491
|
+
- spec/presenters/hyrax/select_type_presenter_spec.rb
|
3492
|
+
- spec/presenters/hyrax/single_use_link_presenter_spec.rb
|
3493
|
+
- spec/presenters/hyrax/transfers_presenter_spec.rb
|
3494
|
+
- spec/presenters/hyrax/trophy_presenter_spec.rb
|
3495
|
+
- spec/presenters/hyrax/twitter_presenter_spec.rb
|
3496
|
+
- spec/presenters/hyrax/user_profile_presenter_spec.rb
|
3497
|
+
- spec/presenters/hyrax/version_list_presenter_spec.rb
|
3498
|
+
- spec/presenters/hyrax/version_presenter_spec.rb
|
3499
|
+
- spec/presenters/hyrax/work_show_presenter_spec.rb
|
3500
|
+
- spec/presenters/hyrax/work_usage_spec.rb
|
3501
|
+
- spec/presenters/hyrax/workflow_presenter_spec.rb
|
3502
|
+
- spec/rails_helper.rb
|
3503
|
+
- spec/renderers/hyrax/renderers/attribute_renderer_spec.rb
|
3504
|
+
- spec/renderers/hyrax/renderers/date_attribute_renderer_spec.rb
|
3505
|
+
- spec/renderers/hyrax/renderers/external_link_attribute_renderer_spec.rb
|
3506
|
+
- spec/renderers/hyrax/renderers/faceted_attribute_renderer_spec.rb
|
3507
|
+
- spec/renderers/hyrax/renderers/license_attribute_renderer_spec.rb
|
3508
|
+
- spec/renderers/hyrax/renderers/linked_attribute_renderer_spec.rb
|
3509
|
+
- spec/renderers/hyrax/renderers/rights_statement_attribute_renderer_spec.rb
|
3510
|
+
- spec/requests/legacy_routing_spec.rb
|
3511
|
+
- spec/requests/riiif_spec.rb
|
3512
|
+
- spec/routing/admin_routes_spec.rb
|
3513
|
+
- spec/routing/api_route_spec.rb
|
3514
|
+
- spec/routing/citations_route_spec.rb
|
3515
|
+
- spec/routing/collection_permission_templates_routes_spec.rb
|
3516
|
+
- spec/routing/collection_types_routes.rb
|
3517
|
+
- spec/routing/dashboard_routes_spec.rb
|
3518
|
+
- spec/routing/featured_works_route_spec.rb
|
3519
|
+
- spec/routing/operations_spec.rb
|
3520
|
+
- spec/routing/ownership_transfers_route_spec.rb
|
3521
|
+
- spec/routing/resource_sync_spec.rb
|
3522
|
+
- spec/routing/route_spec.rb
|
3523
|
+
- spec/routing/single_use_link_spec.rb
|
3524
|
+
- spec/routing/stats_route_spec.rb
|
3525
|
+
- spec/search_builders/hyrax/abstract_type_relation_spec.rb
|
3526
|
+
- spec/search_builders/hyrax/admin_admin_set_member_search_builder_spec.rb
|
3527
|
+
- spec/search_builders/hyrax/admin_set_search_builder_spec.rb
|
3528
|
+
- spec/search_builders/hyrax/catalog_search_builder_spec.rb
|
3529
|
+
- spec/search_builders/hyrax/collection_member_search_builder_spec.rb
|
3530
|
+
- spec/search_builders/hyrax/collection_search_builder_spec.rb
|
3531
|
+
- spec/search_builders/hyrax/dashboard/collections_search_builder_spec.rb
|
3532
|
+
- spec/search_builders/hyrax/dashboard/nested_collections_search_builder_spec.rb
|
3533
|
+
- spec/search_builders/hyrax/dashboard/works_search_builder_spec.rb
|
3534
|
+
- spec/search_builders/hyrax/embargo_search_builder_spec.rb
|
3535
|
+
- spec/search_builders/hyrax/file_set_search_builder_spec.rb
|
3536
|
+
- spec/search_builders/hyrax/lease_search_builder_spec.rb
|
3537
|
+
- spec/search_builders/hyrax/my/collections_search_builder_spec.rb
|
3538
|
+
- spec/search_builders/hyrax/my/find_works_search_builder_spec.rb
|
3539
|
+
- spec/search_builders/hyrax/my/shares_search_builder_spec.rb
|
3540
|
+
- spec/search_builders/hyrax/my/works_search_builder_spec.rb
|
3541
|
+
- spec/search_builders/hyrax/parent_collection_search_builder_spec.rb
|
3542
|
+
- spec/search_builders/hyrax/single_admin_set_search_builder_spec.rb
|
3543
|
+
- spec/search_builders/hyrax/stats/work_status_search_builder_spec.rb
|
3544
|
+
- spec/search_builders/hyrax/work_relation_spec.rb
|
3545
|
+
- spec/search_builders/hyrax/work_search_builder_spec.rb
|
3546
|
+
- spec/search_builders/hyrax/works_search_builder_spec.rb
|
3547
|
+
- spec/services/hyrax/abstract_message_service_spec.rb
|
3548
|
+
- spec/services/hyrax/adapters/nesting_index_adapter_spec.rb
|
3549
|
+
- spec/services/hyrax/admin_set_create_service_spec.rb
|
3550
|
+
- spec/services/hyrax/admin_set_member_service_spec.rb
|
3551
|
+
- spec/services/hyrax/admin_set_service_spec.rb
|
3552
|
+
- spec/services/hyrax/batch_create_failure_service_spec.rb
|
3553
|
+
- spec/services/hyrax/batch_create_success_service_spec.rb
|
3554
|
+
- spec/services/hyrax/change_content_depositor_service_spec.rb
|
3555
|
+
- spec/services/hyrax/collection_member_service_spec.rb
|
3556
|
+
- spec/services/hyrax/collection_types/create_service_spec.rb
|
3557
|
+
- spec/services/hyrax/collection_types/permissions_service_spec.rb
|
3558
|
+
- spec/services/hyrax/collections/collection_member_service_spec.rb
|
3559
|
+
- spec/services/hyrax/collections/managed_collections_service_spec.rb
|
3560
|
+
- spec/services/hyrax/collections/migration_service_spec.rb
|
3561
|
+
- spec/services/hyrax/collections/nested_collection_persistence_service_spec.rb
|
3562
|
+
- spec/services/hyrax/collections/nested_collection_query_service_spec.rb
|
3563
|
+
- spec/services/hyrax/collections/permissions_create_service_spec.rb
|
3564
|
+
- spec/services/hyrax/collections/permissions_service_spec.rb
|
3565
|
+
- spec/services/hyrax/collections_service_spec.rb
|
3566
|
+
- spec/services/hyrax/curation_concern_spec.rb
|
3567
|
+
- spec/services/hyrax/database_migrator_spec.rb
|
3568
|
+
- spec/services/hyrax/default_middleware_stack_spec.rb
|
3569
|
+
- spec/services/hyrax/derivative_path_spec.rb
|
3570
|
+
- spec/services/hyrax/derivative_service_spec.rb
|
3571
|
+
- spec/services/hyrax/embargo_service_spec.rb
|
3572
|
+
- spec/services/hyrax/file_set_csv_service_spec.rb
|
3573
|
+
- spec/services/hyrax/file_set_derivatives_service_spec.rb
|
3574
|
+
- spec/services/hyrax/file_set_fixity_check_service_spec.rb
|
3575
|
+
- spec/services/hyrax/fixity_check_failure_service_spec.rb
|
3576
|
+
- spec/services/hyrax/graph_exporter_spec.rb
|
3577
|
+
- spec/services/hyrax/iiif_authorization_service_spec.rb
|
3578
|
+
- spec/services/hyrax/import_url_failure_service_spec.rb
|
3579
|
+
- spec/services/hyrax/lease_service_spec.rb
|
3580
|
+
- spec/services/hyrax/license_service_spec.rb
|
3581
|
+
- spec/services/hyrax/lock_manager_spec.rb
|
3582
|
+
- spec/services/hyrax/messenger_service_spec.rb
|
3583
|
+
- spec/services/hyrax/microdata_spec.rb
|
3584
|
+
- spec/services/hyrax/multiple_membership_checker_spec.rb
|
3585
|
+
- spec/services/hyrax/noid_spec.rb
|
3586
|
+
- spec/services/hyrax/permission_template_applicator_spec.rb
|
3587
|
+
- spec/services/hyrax/persist_derivatives_spec.rb
|
3588
|
+
- spec/services/hyrax/persist_directly_contained_output_file_service_spec.rb
|
3589
|
+
- spec/services/hyrax/qa_select_service_spec.rb
|
3590
|
+
- spec/services/hyrax/quick_classification_query_spec.rb
|
3591
|
+
- spec/services/hyrax/repository_fixity_check_service_spec.rb
|
3592
|
+
- spec/services/hyrax/resource_types_service_spec.rb
|
3593
|
+
- spec/services/hyrax/rights_statement_service_spec.rb
|
3594
|
+
- spec/services/hyrax/statistics/collections/over_time_spec.rb
|
3595
|
+
- spec/services/hyrax/statistics/depositors/summary_spec.rb
|
3596
|
+
- spec/services/hyrax/statistics/file_sets/by_format_spec.rb
|
3597
|
+
- spec/services/hyrax/statistics/query_service_spec.rb
|
3598
|
+
- spec/services/hyrax/statistics/system_stats_spec.rb
|
3599
|
+
- spec/services/hyrax/statistics/users/over_time_spec.rb
|
3600
|
+
- spec/services/hyrax/statistics/works/by_depositor_spec.rb
|
3601
|
+
- spec/services/hyrax/statistics/works/by_resource_type_spec.rb
|
3602
|
+
- spec/services/hyrax/statistics/works/count_spec.rb
|
3603
|
+
- spec/services/hyrax/statistics/works/over_time_spec.rb
|
3604
|
+
- spec/services/hyrax/thumbnail_path_service_spec.rb
|
3605
|
+
- spec/services/hyrax/tolerant_select_service_spec.rb
|
3606
|
+
- spec/services/hyrax/user_stat_importer_spec.rb
|
3607
|
+
- spec/services/hyrax/versioning_service_spec.rb
|
3608
|
+
- spec/services/hyrax/work_query_service_spec.rb
|
3609
|
+
- spec/services/hyrax/workflow/action_taken_service_spec.rb
|
3610
|
+
- spec/services/hyrax/workflow/activate_object_spec.rb
|
3611
|
+
- spec/services/hyrax/workflow/changes_required_notification_spec.rb
|
3612
|
+
- spec/services/hyrax/workflow/deactivate_object_spec.rb
|
3613
|
+
- spec/services/hyrax/workflow/deposited_notification_spec.rb
|
3614
|
+
- spec/services/hyrax/workflow/grant_edit_to_depositor_spec.rb
|
3615
|
+
- spec/services/hyrax/workflow/grant_read_to_depositor_spec.rb
|
3616
|
+
- spec/services/hyrax/workflow/method_generator_spec.rb
|
3617
|
+
- spec/services/hyrax/workflow/notification_configuration_parameter_spec.rb
|
3618
|
+
- spec/services/hyrax/workflow/notification_generator_spec.rb
|
3619
|
+
- spec/services/hyrax/workflow/notification_service_spec.rb
|
3620
|
+
- spec/services/hyrax/workflow/pending_review_notification_spec.rb
|
3621
|
+
- spec/services/hyrax/workflow/permission_generator_spec.rb
|
3622
|
+
- spec/services/hyrax/workflow/permission_query_spec.rb
|
3623
|
+
- spec/services/hyrax/workflow/revoke_edit_from_depositor_spec.rb
|
3624
|
+
- spec/services/hyrax/workflow/sipity_actions_generator_spec.rb
|
3625
|
+
- spec/services/hyrax/workflow/state_machine_generator_spec.rb
|
3626
|
+
- spec/services/hyrax/workflow/status_list_service_spec.rb
|
3627
|
+
- spec/services/hyrax/workflow/workflow_factory_spec.rb
|
3628
|
+
- spec/services/hyrax/workflow/workflow_importer_spec.rb
|
3629
|
+
- spec/services/hyrax/workflow/workflow_permissions_generator_spec.rb
|
3630
|
+
- spec/services/hyrax/workflow/workflow_schema_spec.rb
|
3631
|
+
- spec/services/hyrax/working_directory_spec.rb
|
3632
|
+
- spec/services/hyrax/works/managed_works_service_spec.rb
|
3633
|
+
- spec/spec_helper.rb
|
3634
|
+
- spec/strategies/hyrax/strategies/yaml_strategy_spec.rb
|
3635
|
+
- spec/support/controller_level_helpers.rb
|
3636
|
+
- spec/support/factory_helpers.rb
|
3637
|
+
- spec/support/fakes/fake_authority.rb
|
3638
|
+
- spec/support/features.rb
|
3639
|
+
- spec/support/features/batch_edit_actions.rb
|
3640
|
+
- spec/support/features/session_helpers.rb
|
3641
|
+
- spec/support/features/workflow.rb
|
3642
|
+
- spec/support/input_support.rb
|
3643
|
+
- spec/support/logging_formatter.rb
|
3644
|
+
- spec/support/matchers/api_responses.rb
|
3645
|
+
- spec/support/matchers/collection_type_property_matchers.rb
|
3646
|
+
- spec/support/matchers/response_matchers.rb
|
3647
|
+
- spec/support/optional_example.rb
|
3648
|
+
- spec/support/rake.rb
|
3649
|
+
- spec/support/selectors.rb
|
3650
|
+
- spec/support/spec_statistic.rb
|
3651
|
+
- spec/support/speedup.rb
|
3652
|
+
- spec/support/statistic_helper.rb
|
3653
|
+
- spec/tasks/rake_spec.rb
|
3654
|
+
- spec/test_app_templates/Gemfile.extra
|
3655
|
+
- spec/test_app_templates/disable_animations_in_test_environment.rb
|
3656
|
+
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
3657
|
+
- spec/views/_flash_msg.html.erb_spec.rb
|
3658
|
+
- spec/views/_user_util_links.html.erb_spec.rb
|
3659
|
+
- spec/views/catalog/_index_list_default.html.erb_spec.rb
|
3660
|
+
- spec/views/catalog/_search_form.html.erb_spec.rb
|
3661
|
+
- spec/views/catalog/_thumbnail_list_collection.html.erb_spec.rb
|
3662
|
+
- spec/views/catalog/index.html.erb_spec.rb
|
3663
|
+
- spec/views/content_blocks/edit.html.erb_spec.rb
|
3664
|
+
- spec/views/hyrax/admin/admin_sets/_form.html.erb_spec.rb
|
3665
|
+
- spec/views/hyrax/admin/admin_sets/_form_participant_table.html.erb_spec.rb
|
3666
|
+
- spec/views/hyrax/admin/admin_sets/_form_participants.html.erb_spec.rb
|
3667
|
+
- spec/views/hyrax/admin/admin_sets/_form_visibility.html.erb_spec.rb
|
3668
|
+
- spec/views/hyrax/admin/admin_sets/_form_workflow.html.erb_spec.rb
|
3669
|
+
- spec/views/hyrax/admin/admin_sets/_show_actions.html.erb_spec.rb
|
3670
|
+
- spec/views/hyrax/admin/admin_sets/_show_document_list.html.erb_spec.rb
|
3671
|
+
- spec/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb_spec.rb
|
3672
|
+
- spec/views/hyrax/admin/admin_sets/index.html.erb_spec.rb
|
3673
|
+
- spec/views/hyrax/admin/admin_sets/index.json.erb_spec.rb
|
3674
|
+
- spec/views/hyrax/admin/admin_sets/show.html.erb_spec.rb
|
3675
|
+
- spec/views/hyrax/admin/collection_types/_form.html.erb_spec.rb
|
3676
|
+
- spec/views/hyrax/admin/collection_types/_form_appearance.html.erb_spec.rb
|
3677
|
+
- spec/views/hyrax/admin/collection_types/_form_metadata.html.erb_spec.rb
|
3678
|
+
- spec/views/hyrax/admin/collection_types/_form_metadata_admin_set.html.erb_spec.rb
|
3679
|
+
- spec/views/hyrax/admin/collection_types/_form_participants.html.erb_spec.rb
|
3680
|
+
- spec/views/hyrax/admin/collection_types/_form_participants_table.html.erb_spec.rb
|
3681
|
+
- spec/views/hyrax/admin/collection_types/_form_settings.html.erb_spec.rb
|
3682
|
+
- spec/views/hyrax/admin/collection_types/index.html.erb_spec.rb
|
3683
|
+
- spec/views/hyrax/admin/features/index.html.erb_spec.rb
|
3684
|
+
- spec/views/hyrax/admin/stats/show.html.erb_spec.rb
|
3685
|
+
- spec/views/hyrax/admin/users/index.html.erb_spec.rb
|
3686
|
+
- spec/views/hyrax/admin/workflow_roles/index.html.erb_spec.rb
|
3687
|
+
- spec/views/hyrax/base/_attribute_rows.html.erb_spec.rb
|
3688
|
+
- spec/views/hyrax/base/_attributes.html.erb_spec.rb
|
3689
|
+
- spec/views/hyrax/base/_citations.html.erb_spec.rb
|
3690
|
+
- spec/views/hyrax/base/_form.html.erb_spec.rb
|
3691
|
+
- spec/views/hyrax/base/_form_child_work_relationships.html.erb_spec.rb
|
3692
|
+
- spec/views/hyrax/base/_form_files.html.erb_spec.rb
|
3693
|
+
- spec/views/hyrax/base/_form_metadata.html.erb_spec.rb
|
3694
|
+
- spec/views/hyrax/base/_form_progress.html.erb_spec.rb
|
3695
|
+
- spec/views/hyrax/base/_form_relationships.html.erb_spec.rb
|
3696
|
+
- spec/views/hyrax/base/_form_rendering.html.erb_spec.rb
|
3697
|
+
- spec/views/hyrax/base/_items.html.erb_spec.rb
|
3698
|
+
- spec/views/hyrax/base/_member.html.erb_spec.rb
|
3699
|
+
- spec/views/hyrax/base/_relationships.html.erb_spec.rb
|
3700
|
+
- spec/views/hyrax/base/_show_actions.html.erb_spec.rb
|
3701
|
+
- spec/views/hyrax/base/_social_media.html.erb_spec.rb
|
3702
|
+
- spec/views/hyrax/base/edit.html.erb_spec.rb
|
3703
|
+
- spec/views/hyrax/base/file_manager.html.erb_spec.rb
|
3704
|
+
- spec/views/hyrax/base/show.html.erb_spec.rb
|
3705
|
+
- spec/views/hyrax/base/show.json.jbuilder_spec.rb
|
3706
|
+
- spec/views/hyrax/base/unauthorized.html.erb_spec.rb
|
3707
|
+
- spec/views/hyrax/base/unavailable.html.erb_spec.rb
|
3708
|
+
- spec/views/hyrax/batch_edits/check_all_spec.rb
|
3709
|
+
- spec/views/hyrax/batch_edits/edit.html.erb_spec.rb
|
3710
|
+
- spec/views/hyrax/batch_uploads/_form.html.erb_spec.rb
|
3711
|
+
- spec/views/hyrax/citations/work.html.erb_spec.rb
|
3712
|
+
- spec/views/hyrax/collections/_show_descriptions.html.erb_spec.rb
|
3713
|
+
- spec/views/hyrax/collections/_show_document_list.html.erb_spec.rb
|
3714
|
+
- spec/views/hyrax/collections/_show_document_list_row.html.erb_spec.rb
|
3715
|
+
- spec/views/hyrax/collections/_show_parent_collections.html.erb_spec.rb
|
3716
|
+
- spec/views/hyrax/collections/_sort_and_per_page.html.erb_spec.rb
|
3717
|
+
- spec/views/hyrax/collections/_subcollection_list.html.erb_spec.rb
|
3718
|
+
- spec/views/hyrax/collections/show.html.erb_spec.rb
|
3719
|
+
- spec/views/hyrax/dashboard/_sidebar.html.erb_spec.rb
|
3720
|
+
- spec/views/hyrax/dashboard/collections/_default_group.html.erb_spec.rb
|
3721
|
+
- spec/views/hyrax/dashboard/collections/_form.html.erb_spec.rb
|
3722
|
+
- spec/views/hyrax/dashboard/collections/_form_branding.html.erb_spec.rb
|
3723
|
+
- spec/views/hyrax/dashboard/collections/_form_discovery.erb_spec.rb
|
3724
|
+
- spec/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb_spec.rb
|
3725
|
+
- spec/views/hyrax/dashboard/collections/_form_share.erb_spec.rb
|
3726
|
+
- spec/views/hyrax/dashboard/collections/_form_share_table.html.erb_spec.rb
|
3727
|
+
- spec/views/hyrax/dashboard/collections/_list_collections.html.erb_spec.rb
|
3728
|
+
- spec/views/hyrax/dashboard/collections/_show_actions.html.erb_spec.rb
|
3729
|
+
- spec/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb_spec.rb
|
3730
|
+
- spec/views/hyrax/dashboard/collections/_show_descriptions.html.erb_spec.rb
|
3731
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list.html.erb_spec.rb
|
3732
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb_spec.rb
|
3733
|
+
- spec/views/hyrax/dashboard/collections/_show_document_list_row.html.erb_spec.rb
|
3734
|
+
- spec/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb_spec.rb
|
3735
|
+
- spec/views/hyrax/dashboard/collections/_show_parent_collections.html.erb_spec.rb
|
3736
|
+
- spec/views/hyrax/dashboard/collections/_show_subcollection_actions.html.erb_spec.rb
|
3737
|
+
- spec/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb_spec.rb
|
3738
|
+
- spec/views/hyrax/dashboard/collections/_subcollection_list.html.erb_spec.rb
|
3739
|
+
- spec/views/hyrax/dashboard/collections/_work_action_menu.html.erb_spec.rb
|
3740
|
+
- spec/views/hyrax/dashboard/collections/edit.html.erb_spec.rb
|
3741
|
+
- spec/views/hyrax/dashboard/collections/show.html.erb_spec.rb
|
3742
|
+
- spec/views/hyrax/dashboard/profiles/_trophy_edit.html.erb_spec.rb
|
3743
|
+
- spec/views/hyrax/dashboard/profiles/edit.html.erb_spec.rb
|
3744
|
+
- spec/views/hyrax/dashboard/profiles/show.html.erb_spec.rb
|
3745
|
+
- spec/views/hyrax/dashboard/show_user_spec.rb
|
3746
|
+
- spec/views/hyrax/depositors/index.html.erb_spec.rb
|
3747
|
+
- spec/views/hyrax/embargoes/index.html.erb_spec.rb
|
3748
|
+
- spec/views/hyrax/file_sets/_actions.html.erb_spec.rb
|
3749
|
+
- spec/views/hyrax/file_sets/_permission.html.erb_spec.rb
|
3750
|
+
- spec/views/hyrax/file_sets/_permission_form.html.erb_spec.rb
|
3751
|
+
- spec/views/hyrax/file_sets/_show_actions.html.erb_spec.rb
|
3752
|
+
- spec/views/hyrax/file_sets/_show_characterization_details.html.erb_spec.rb
|
3753
|
+
- spec/views/hyrax/file_sets/_single_use_links.html.erb_spec.rb
|
3754
|
+
- spec/views/hyrax/file_sets/_versioning.html.erb_spec.rb
|
3755
|
+
- spec/views/hyrax/file_sets/media_display/_audio.html.erb_spec.rb
|
3756
|
+
- spec/views/hyrax/file_sets/media_display/_default.html.erb_spec.rb
|
3757
|
+
- spec/views/hyrax/file_sets/media_display/_video.html.erb_spec.rb
|
3758
|
+
- spec/views/hyrax/file_sets/show.html.erb_spec.rb
|
3759
|
+
- spec/views/hyrax/file_sets/show.json.jbuilder_spec.rb
|
3760
|
+
- spec/views/hyrax/homepage/_announcement.html.erb_spec.rb
|
3761
|
+
- spec/views/hyrax/homepage/_featured_works.html.erb_spec.rb
|
3762
|
+
- spec/views/hyrax/homepage/_sortable_featured.html.erb_spec.rb
|
3763
|
+
- spec/views/hyrax/homepage/index.html.erb_spec.rb
|
3764
|
+
- spec/views/hyrax/leases/index.html.erb_spec.rb
|
3765
|
+
- spec/views/hyrax/my/_collection_action_menu.html.erb_spec.rb
|
3766
|
+
- spec/views/hyrax/my/_search_header.html.erb_spec.rb
|
3767
|
+
- spec/views/hyrax/my/_work_action_menu.html.erb_spec.rb
|
3768
|
+
- spec/views/hyrax/my/collections/_list_collections.html.erb_spec.rb
|
3769
|
+
- spec/views/hyrax/my/collections/index.html.erb_spec.rb
|
3770
|
+
- spec/views/hyrax/my/facet.html.erb_spec.rb
|
3771
|
+
- spec/views/hyrax/my/works/_list_works.html.erb_spec.rb
|
3772
|
+
- spec/views/hyrax/my/works/index.html.erb_spec.rb
|
3773
|
+
- spec/views/hyrax/permissions/confirm.html.erb_spec.rb
|
3774
|
+
- spec/views/hyrax/single_use_links_viewer/show.html.erb_spec.rb
|
3775
|
+
- spec/views/hyrax/single_use_links_viewer/single_use_error.html.erb_spec.rb
|
3776
|
+
- spec/views/hyrax/stats/file.html.erb_spec.rb
|
3777
|
+
- spec/views/hyrax/uploads/create.json.jbuilder_spec.rb
|
3778
|
+
- spec/views/hyrax/users/_user_info.html.erb_spec.rb
|
3779
|
+
- spec/views/hyrax/users/index.html.erb_spec.rb
|
3780
|
+
- spec/views/hyrax/users/show.html.erb_spec.rb
|
3781
|
+
- spec/views/layouts/error.html.erb_spec.rb
|
3782
|
+
- spec/views/pages/edit.html.erb_spec.rb
|
3783
|
+
- spec/views/pages/show.html.erb_spec.rb
|
3784
|
+
- spec/views/records/edit_fields/_based_near.html.erb_spec.rb
|
3785
|
+
- spec/views/records/edit_fields/_description.html.erb_spec.rb
|
3786
|
+
- spec/views/records/edit_fields/_language.html.erb_spec.rb
|
3787
|
+
- spec/views/records/edit_fields/_subject.html.erb_spec.rb
|
3788
|
+
- spec/views/shared/select_work_type_modal.html.erb_spec.rb
|