worthwhile 0.0.1.alpha → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -1
- data/.rspec +1 -0
- data/.travis.yml +19 -0
- data/Gemfile +7 -11
- data/README.md +8 -12
- data/Rakefile +17 -2
- data/app/actors/concerns/worthwhile/manages_embargoes_actor.rb +79 -0
- data/app/actors/curation_concern/base_actor.rb +68 -0
- data/app/actors/curation_concern/generic_file_actor.rb +40 -0
- data/app/actors/curation_concern/generic_work_actor.rb +92 -0
- data/app/actors/curation_concern/linked_resource_actor.rb +4 -0
- data/app/assets/images/default.png +0 -0
- data/app/assets/images/nope.png +0 -0
- data/app/assets/javascripts/.gitkeep +0 -0
- data/app/assets/javascripts/modernizr.js +3 -0
- data/app/assets/javascripts/worthwhile/.gitkeep +0 -0
- data/app/assets/javascripts/worthwhile/accept_contributor_agreement.js +15 -0
- data/app/assets/javascripts/worthwhile/application.js +18 -0
- data/app/assets/javascripts/worthwhile/browse_everything_implement.js +7 -0
- data/app/assets/javascripts/worthwhile/embargoes.js +17 -0
- data/app/assets/javascripts/worthwhile/facet_mine.js +22 -0
- data/app/assets/javascripts/worthwhile/help_modal.js +36 -0
- data/app/assets/javascripts/worthwhile/link_groups.js.coffee +123 -0
- data/app/assets/javascripts/worthwhile/link_users.js.coffee +126 -0
- data/app/assets/javascripts/worthwhile/manage_repeating_fields.js +74 -0
- data/app/assets/javascripts/worthwhile/proxy_rights.js.coffee +95 -0
- data/app/assets/javascripts/worthwhile/proxy_submission.js +23 -0
- data/app/assets/javascripts/worthwhile/select_works.js.coffee +20 -0
- data/app/assets/javascripts/worthwhile/worthwhile.js +45 -0
- data/app/assets/stylesheets/worthwhile.css.scss +23 -0
- data/app/assets/stylesheets/worthwhile/_global-variables.css.scss +5 -0
- data/app/assets/stylesheets/worthwhile/_modules.css.scss +14 -0
- data/app/assets/stylesheets/worthwhile/_positioning.css.scss +138 -0
- data/app/assets/stylesheets/worthwhile/_theme.css.scss +46 -0
- data/app/assets/stylesheets/worthwhile/_typography.css.scss +142 -0
- data/app/assets/stylesheets/worthwhile/_variables_bootstrap.css.scss +7 -0
- data/app/assets/stylesheets/worthwhile/_worthwhile.css.scss +7 -0
- data/app/assets/stylesheets/worthwhile/downloads.css.scss +3 -0
- data/app/assets/stylesheets/worthwhile/help_requests.css.scss +3 -0
- data/app/assets/stylesheets/worthwhile/modules/accessibility.css.scss +50 -0
- data/app/assets/stylesheets/worthwhile/modules/accordion.css.scss +33 -0
- data/app/assets/stylesheets/worthwhile/modules/attributes.css.scss +26 -0
- data/app/assets/stylesheets/worthwhile/modules/classify_work.css.scss +100 -0
- data/app/assets/stylesheets/worthwhile/modules/collections.css.scss +42 -0
- data/app/assets/stylesheets/worthwhile/modules/embargoes.css.scss +15 -0
- data/app/assets/stylesheets/worthwhile/modules/emphatic_action_area.css.scss +14 -0
- data/app/assets/stylesheets/worthwhile/modules/forms.css.scss +116 -0
- data/app/assets/stylesheets/worthwhile/modules/multi_value_fields.css.scss +52 -0
- data/app/assets/stylesheets/worthwhile/modules/pagination.css.scss +4 -0
- data/app/assets/stylesheets/worthwhile/modules/search_results.css.scss +55 -0
- data/app/assets/stylesheets/worthwhile/modules/site_actions.css.scss +53 -0
- data/app/assets/stylesheets/worthwhile/modules/site_search.css.scss +46 -0
- data/app/controllers/catalog_controller.rb +3 -0
- data/app/controllers/collections_controller.rb +59 -0
- data/app/controllers/concerns/worthwhile/application_controller_behavior.rb +23 -0
- data/app/controllers/concerns/worthwhile/catalog_controller.rb +347 -0
- data/app/controllers/concerns/worthwhile/curation_concern_controller.rb +131 -0
- data/app/controllers/concerns/worthwhile/files_controller.rb +149 -0
- data/app/controllers/concerns/worthwhile/manages_embargoes.rb +22 -0
- data/app/controllers/concerns/worthwhile/parent_container.rb +31 -0
- data/app/controllers/concerns/worthwhile/themed_layout_controller.rb +31 -0
- data/app/controllers/concerns/worthwhile/without_namespace.rb +15 -0
- data/app/controllers/curation_concern/generic_files_controller.rb +6 -0
- data/app/controllers/curation_concern/generic_works_controller.rb +6 -0
- data/app/controllers/curation_concern/linked_resources_controller.rb +68 -0
- data/app/controllers/curation_concern/permissions_controller.rb +19 -0
- data/app/controllers/downloads_controller.rb +4 -0
- data/app/controllers/embargoes_controller.rb +44 -0
- data/app/controllers/leases_controller.rb +34 -0
- data/app/controllers/registrations_controller.rb +20 -0
- data/app/controllers/sessions_controller.rb +4 -0
- data/app/controllers/worthwhile/application_controller.rb +7 -0
- data/app/controllers/worthwhile/classify_concerns_controller.rb +35 -0
- data/app/datastreams/generic_work_metadata.rb +3 -0
- data/app/datastreams/worthwhile/generic_work_rdf_properties.rb +57 -0
- data/app/datastreams/worthwhile/properties_datastream.rb +28 -0
- data/app/helpers/curate/collections_helper.rb +133 -0
- data/app/helpers/worthwhile/ability_helper.rb +46 -0
- data/app/helpers/worthwhile/attribute_helper.rb +67 -0
- data/app/helpers/worthwhile/catalog_helper.rb +38 -0
- data/app/helpers/worthwhile/collections_helper.rb +19 -0
- data/app/helpers/worthwhile/embargo_helper.rb +17 -0
- data/app/helpers/worthwhile/generic_file_helper.rb +19 -0
- data/app/helpers/worthwhile/lease_helper.rb +18 -0
- data/app/helpers/worthwhile/main_app_helpers.rb +14 -0
- data/app/helpers/worthwhile/render_constraints_helper.rb +42 -0
- data/app/helpers/worthwhile/search_paths_helper.rb +13 -0
- data/app/helpers/worthwhile/thumbnail_helper.rb +11 -0
- data/app/helpers/worthwhile/title_helper.rb +23 -0
- data/app/helpers/worthwhile/url_helper.rb +16 -0
- data/app/inputs/multi_value_input.rb +72 -0
- data/app/models/collection.rb +15 -0
- data/app/models/concerns/curation_concern/collection_model.rb +62 -0
- data/app/models/concerns/curation_concern/curatable.rb +77 -0
- data/app/models/concerns/curation_concern/has_representative.rb +14 -0
- data/app/models/concerns/curation_concern/human_readable_type.rb +23 -0
- data/app/models/concerns/curation_concern/with_basic_metadata.rb +49 -0
- data/app/models/concerns/curation_concern/with_editors.rb +44 -0
- data/app/models/concerns/curation_concern/with_generic_files.rb +23 -0
- data/app/models/concerns/curation_concern/with_linked_resources.rb +21 -0
- data/app/models/concerns/curation_concern/work.rb +24 -0
- data/app/models/concerns/worthwhile/ability.rb +34 -0
- data/app/models/concerns/worthwhile/generic_file/versioned_content.rb +18 -0
- data/app/models/concerns/worthwhile/generic_file_base.rb +64 -0
- data/app/models/concerns/worthwhile/solr_document_behavior.rb +140 -0
- data/app/models/generic_work.rb +5 -0
- data/app/models/worthwhile/classify_concern.rb +47 -0
- data/app/models/worthwhile/content_version.rb +23 -0
- data/app/models/worthwhile/contributor_agreement.rb +23 -0
- data/app/models/worthwhile/generic_file.rb +5 -0
- data/app/models/worthwhile/linked_resource.rb +41 -0
- data/app/models/worthwhile/quick_classification_query.rb +31 -0
- data/app/services/worthwhile/curation_concern.rb +21 -0
- data/app/services/worthwhile/embargo_service.rb +26 -0
- data/app/services/worthwhile/lease_service.rb +23 -0
- data/app/views/catalog/_action_menu_partials/_collection.html.erb +27 -0
- data/app/views/catalog/_action_menu_partials/_default.html.erb +27 -0
- data/app/views/catalog/_document.html.erb +3 -0
- data/app/views/catalog/_document_list.html.erb +5 -0
- data/app/views/catalog/_home_text.html.erb +8 -0
- data/app/views/catalog/_index_default.html.erb +17 -0
- data/app/views/catalog/_index_header_list_default.html.erb +17 -0
- data/app/views/catalog/_navbar.html.erb +12 -0
- data/app/views/catalog/_show_partials/_default.html.erb +22 -0
- data/app/views/catalog/_show_partials/_default_details.html.erb +15 -0
- data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
- data/app/views/catalog/index.html.erb +48 -0
- data/app/views/collections/_batch_edits_actions.html.erb +3 -0
- data/app/views/collections/_button_for_creating_empty_collection.html.erb +3 -0
- data/app/views/collections/_collection.html.erb +1 -0
- data/app/views/collections/_dashboard_document_list.html.erb +6 -0
- data/app/views/collections/_document_list.html.erb +7 -0
- data/app/views/collections/_edit_actions.html.erb +5 -0
- data/app/views/collections/_edit_descriptions.html.erb +20 -0
- data/app/views/collections/_form.html.erb +26 -0
- data/app/views/collections/_form_for_select_collection.html.erb +34 -0
- data/app/views/collections/_form_permission.html.erb +36 -0
- data/app/views/collections/_form_required_information.html.erb +11 -0
- data/app/views/collections/_identifier_and_action.html.erb +15 -0
- data/app/views/collections/_media_display.html.erb +1 -0
- data/app/views/collections/_paginate.html.erb +6 -0
- data/app/views/collections/_search_collection_dashboard_form.html.erb +10 -0
- data/app/views/collections/_show_actions.html.erb +8 -0
- data/app/views/collections/_show_descriptions.html.erb +10 -0
- data/app/views/collections/_show_fields.html.erb +0 -0
- data/app/views/collections/_single_item_action_fields.html.erb +6 -0
- data/app/views/collections/_sort_and_per_page.html.erb +29 -0
- data/app/views/collections/_view_type_group.html.erb +13 -0
- data/app/views/collections/edit.html.erb +22 -0
- data/app/views/collections/new.html.erb +15 -0
- data/app/views/collections/show.html.erb +24 -0
- data/app/views/curate/collections/_add_to_collection_modal.html.erb +15 -0
- data/app/views/curate/collections/_button_remove_from_collection.html.erb +6 -0
- data/app/views/curate/collections/_form_to_add_member.html.erb +27 -0
- data/app/views/curate/collections/add_member_form.html.erb +6 -0
- data/app/views/curation_concern/base/_attributes.html.erb +25 -0
- data/app/views/curation_concern/base/_collections.html.erb +26 -0
- data/app/views/curation_concern/base/_form.html.erb +27 -0
- data/app/views/curation_concern/base/_form_additional_information.html.erb +9 -0
- data/app/views/curation_concern/base/_form_content_license.html.erb +16 -0
- data/app/views/curation_concern/base/_form_contributor_agreement.html.erb +29 -0
- data/app/views/curation_concern/base/_form_descriptive_fields.erb +23 -0
- data/app/views/curation_concern/base/_form_files_and_links.html.erb +29 -0
- data/app/views/curation_concern/base/_form_permission.html.erb +52 -0
- data/app/views/curation_concern/base/_form_permission_embargo.html.erb +6 -0
- data/app/views/curation_concern/base/_form_permission_lease.html.erb +6 -0
- data/app/views/curation_concern/base/_form_permission_under_embargo.html.erb +16 -0
- data/app/views/curation_concern/base/_form_permission_under_lease.html.erb +18 -0
- data/app/views/curation_concern/base/_form_representative_image.html.erb +13 -0
- data/app/views/curation_concern/base/_form_required_information.html.erb +11 -0
- data/app/views/curation_concern/base/_form_supplementary_fields.html.erb +15 -0
- data/app/views/curation_concern/base/_legally_binding_text.html.erb +33 -0
- data/app/views/curation_concern/base/_related_files.html.erb +24 -0
- data/app/views/curation_concern/base/_related_resources.html.erb +40 -0
- data/app/views/curation_concern/base/_representative_media.html.erb +8 -0
- data/app/views/curation_concern/base/edit.html.erb +15 -0
- data/app/views/curation_concern/base/new.html.erb +14 -0
- data/app/views/curation_concern/base/show.html.erb +32 -0
- data/app/views/curation_concern/base/unauthorized.html.erb +3 -0
- data/app/views/curation_concern/generic_files/_form.html.erb +35 -0
- data/app/views/curation_concern/generic_files/_media_display.html.erb +20 -0
- data/app/views/curation_concern/generic_files/edit.html.erb +5 -0
- data/app/views/curation_concern/generic_files/show.html.erb +15 -0
- data/app/views/curation_concern/generic_works/_generic_work.html.erb +3 -0
- data/app/views/curation_concern/linked_resources/_form.html.erb +11 -0
- data/app/views/curation_concern/linked_resources/edit.html.erb +5 -0
- data/app/views/curation_concern/linked_resources/new.html.erb +5 -0
- data/app/views/curation_concern/permissions/confirm.html.erb +13 -0
- data/app/views/curation_concern/worthwhile/generic_files/_actions.html.erb +16 -0
- data/app/views/curation_concern/worthwhile/generic_files/_generic_file.html.erb +12 -0
- data/app/views/embargoes/_embargo_history.html.erb +7 -0
- data/app/views/embargoes/_list_active_embargoes.html.erb +16 -0
- data/app/views/embargoes/_list_deactivated_embargoes.html.erb +10 -0
- data/app/views/embargoes/_list_expired_active_embargoes.html.erb +44 -0
- data/app/views/embargoes/edit.html.erb +43 -0
- data/app/views/embargoes/index.html.erb +18 -0
- data/app/views/layouts/boilerplate.html.erb +22 -0
- data/app/views/layouts/common_objects.html.erb +36 -0
- data/app/views/layouts/curate_nd.html.erb +33 -0
- data/app/views/layouts/curate_nd/1_column.html.erb +22 -0
- data/app/views/layouts/curate_nd/2_column.html.erb +26 -0
- data/app/views/layouts/curate_nd/catalog.html.erb +38 -0
- data/app/views/layouts/curate_nd/dashboard.html.erb +22 -0
- data/app/views/leases/_lease_history.html.erb +7 -0
- data/app/views/leases/_list_active_leases.html.erb +16 -0
- data/app/views/leases/_list_deactivated_leases.html.erb +4 -0
- data/app/views/leases/_list_expired_active_leases.html.erb +38 -0
- data/app/views/leases/edit.html.erb +43 -0
- data/app/views/leases/index.html.erb +18 -0
- data/app/views/shared/_add_content.html.erb +32 -0
- data/app/views/shared/_brand_bar.html.erb +10 -0
- data/app/views/shared/_flash_message.html.erb +17 -0
- data/app/views/shared/_footer.html.erb +10 -0
- data/app/views/shared/_ga.html.erb +6 -0
- data/app/views/shared/_header.html.erb +12 -0
- data/app/views/shared/_my_actions.html.erb +21 -0
- data/app/views/shared/_site_actions.html.erb +7 -0
- data/app/views/shared/_site_search.html.erb +12 -0
- data/app/views/shared/_title_bar.html.erb +16 -0
- data/app/views/worthwhile/classify_concerns/new.html.erb +27 -0
- data/app/workers/visibility_copy_worker.rb +29 -0
- data/config/initializers/simple_form.rb +31 -0
- data/config/locales/sufia.en.yml +26 -0
- data/config/locales/worthwhile.en.yml +68 -0
- data/config/routes.rb +4 -0
- data/lib/generators/worthwhile/install_generator.rb +74 -0
- data/lib/generators/worthwhile/templates/worthwhile.css.scss +3 -0
- data/lib/generators/worthwhile/templates/worthwhile.js +1 -0
- data/lib/generators/worthwhile/templates/worthwhile_config.rb +3 -0
- data/lib/generators/worthwhile/templates/worthwhile_helper.rb +4 -0
- data/lib/worthwhile.rb +3 -1
- data/lib/worthwhile/configuration.rb +74 -0
- data/lib/worthwhile/controller_resource.rb +10 -0
- data/lib/worthwhile/engine.rb +20 -0
- data/lib/worthwhile/rails/routes.rb +78 -0
- data/lib/worthwhile/spec_support.rb +10 -0
- data/lib/worthwhile/version.rb +1 -1
- data/spec/abilities/generic_file_abilities_spec.rb +62 -0
- data/spec/abilities/generic_work_abilities_spec.rb +58 -0
- data/spec/actors/curation_concern/generic_work_actor_spec.rb +215 -0
- data/spec/actors/curation_concern/linked_resource_actor_spec.rb +36 -0
- data/spec/actors/worthwile/manages_embargoes_actor_spec.rb +95 -0
- data/spec/controllers/catalog_controller_spec.rb +114 -0
- data/spec/controllers/collections_controller_spec.rb +216 -0
- data/spec/controllers/curation_concern/generic_files_controller_spec.rb +258 -0
- data/spec/controllers/curation_concern/generic_works_controller_spec.rb +171 -0
- data/spec/controllers/curation_concern/linked_resources_controller_spec.rb +123 -0
- data/spec/controllers/curation_concern/permissions_controller_spec.rb +29 -0
- data/spec/controllers/downloads_controller_spec.rb +53 -0
- data/spec/controllers/embargoes_controller_spec.rb +107 -0
- data/spec/controllers/leases_controller_spec.rb +95 -0
- data/spec/controllers/worthwhile/classify_concerns_controller_spec.rb +35 -0
- data/spec/factories/collections_factory.rb +21 -0
- data/spec/factories/create_curation_concern.rb +3 -0
- data/spec/factories/generic_files.rb +18 -0
- data/spec/factories/generic_works.rb +37 -0
- data/spec/factories/linked_resources_factory.rb +18 -0
- data/spec/factories/users.rb +15 -0
- data/spec/features/add_external_link_spec.rb +25 -0
- data/spec/features/add_file_spec.rb +28 -0
- data/spec/features/collection_spec.rb +238 -0
- data/spec/features/embargo_spec.rb +45 -0
- data/spec/features/lease_spec.rb +43 -0
- data/spec/features/update_file_spec.rb +28 -0
- data/spec/fixtures/files/image.png +0 -0
- data/spec/helpers/catalog_helper_spec.rb +58 -0
- data/spec/helpers/configuration_helper_spec.rb +13 -0
- data/spec/helpers/render_constraints_helper_spec.rb +19 -0
- data/spec/helpers/thumbnail_helper_spec.rb +21 -0
- data/spec/helpers/url_helper_spec.rb +19 -0
- data/spec/matchers.rb +24 -0
- data/spec/matchers/metadata_field_matchers.rb +28 -0
- data/spec/models/collection_spec.rb +136 -0
- data/spec/models/curation_concern/collection_model_spec.rb +50 -0
- data/spec/models/curation_concern/work_spec.rb +30 -0
- data/spec/models/generic_work_spec.rb +24 -0
- data/spec/models/worthwhile/content_version_spec.rb +27 -0
- data/spec/models/worthwhile/generic_file_spec.rb +77 -0
- data/spec/models/worthwhile/linked_resource_spec.rb +76 -0
- data/spec/routing/worthwhile/routes_spec.rb +23 -0
- data/spec/services/embargo_service_spec.rb +38 -0
- data/spec/services/lease_service_spec.rb +37 -0
- data/spec/spec_helper.rb +30 -5
- data/spec/support/controllers/engine_helpers.rb +7 -0
- data/spec/support/curation_concern/factory_helpers.rb +14 -0
- data/spec/support/features.rb +19 -0
- data/spec/support/features/fixture_file_upload.rb +14 -0
- data/spec/support/features/session_helpers.rb +41 -0
- data/spec/support/shared/shared_examples_has_dc_metadata.rb +17 -0
- data/spec/support/shared/shared_examples_is_a_curation_concern_model.rb +40 -0
- data/spec/support/shared/shared_examples_is_embargoable.rb +8 -0
- data/spec/support/shared/shared_examples_with_access_rights.rb +63 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +8 -29
- data/spec/views/curation_concern/base/_attributes.html.erb_spec.rb +25 -0
- data/spec/views/curation_concern/base/show.html.erb_spec.rb +25 -0
- data/spec/views/shared/_add_content.html.erb_spec.rb +42 -0
- data/spec/views/shared/_my_actions.html.erb_spec.rb +23 -0
- data/spec/workers/visibility_copy_worker_spec.rb +68 -0
- data/vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/assets/javascripts/handlebars.js +2278 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js +602 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js +356 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js +50 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js +1276 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js +610 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js +498 -0
- data/vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js +528 -0
- data/vendor/assets/javascripts/jquery.tokeninput.js +1061 -0
- data/vendor/assets/stylesheets/jquery-ui-lightness.css +474 -0
- data/vendor/assets/stylesheets/token-input-facebook.css +122 -0
- data/vendor/assets/stylesheets/token-input-mac.css +204 -0
- data/vendor/assets/stylesheets/token-input.css +127 -0
- data/worthwhile.gemspec +9 -3
- metadata +469 -9
data/worthwhile.gemspec
CHANGED
@@ -18,18 +18,24 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_dependency 'hydra', '7.
|
22
|
-
|
21
|
+
spec.add_dependency 'hydra-head', '~> 7.2.0'
|
22
|
+
spec.add_dependency "breadcrumbs_on_rails", "~> 2.3.0"
|
23
|
+
spec.add_dependency "active_attr"
|
24
|
+
spec.add_dependency "simple_form", '~> 3.1.0.rc2'
|
25
|
+
spec.add_dependency 'sufia-models', '~> 4.0.0'
|
26
|
+
spec.add_dependency 'hydra-collections', '~> 2.0.5'
|
23
27
|
|
24
28
|
spec.add_development_dependency "devise", "~> 3.0"
|
25
29
|
spec.add_development_dependency "bundler", "~> 1.6"
|
26
30
|
spec.add_development_dependency "rake"
|
27
31
|
spec.add_development_dependency "engine_cart", "~> 0.3.4"
|
28
32
|
spec.add_development_dependency "sqlite3"
|
33
|
+
spec.add_development_dependency "rspec-its"
|
29
34
|
spec.add_development_dependency "rspec-rails"
|
35
|
+
spec.add_development_dependency 'rspec-html-matchers'
|
30
36
|
spec.add_development_dependency "capybara"
|
31
37
|
spec.add_development_dependency "poltergeist", ">= 1.5.0"
|
32
38
|
spec.add_development_dependency "factory_girl"
|
33
39
|
spec.add_development_dependency "database_cleaner", "< 1.1.0"
|
34
|
-
|
40
|
+
|
35
41
|
end
|
metadata
CHANGED
@@ -1,29 +1,99 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: worthwhile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Coyne
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name: hydra
|
14
|
+
name: hydra-head
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 7.2.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 7.2.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: breadcrumbs_on_rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 2.3.0
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 2.3.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: active_attr
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: simple_form
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
18
60
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
61
|
+
version: 3.1.0.rc2
|
20
62
|
type: :runtime
|
21
63
|
prerelease: false
|
22
64
|
version_requirements: !ruby/object:Gem::Requirement
|
23
65
|
requirements:
|
24
|
-
- -
|
66
|
+
- - "~>"
|
25
67
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
68
|
+
version: 3.1.0.rc2
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: sufia-models
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 4.0.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 4.0.0
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: hydra-collections
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 2.0.5
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.0.5
|
27
97
|
- !ruby/object:Gem::Dependency
|
28
98
|
name: devise
|
29
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -94,6 +164,20 @@ dependencies:
|
|
94
164
|
- - ">="
|
95
165
|
- !ruby/object:Gem::Version
|
96
166
|
version: '0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rspec-its
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
97
181
|
- !ruby/object:Gem::Dependency
|
98
182
|
name: rspec-rails
|
99
183
|
requirement: !ruby/object:Gem::Requirement
|
@@ -108,6 +192,20 @@ dependencies:
|
|
108
192
|
- - ">="
|
109
193
|
- !ruby/object:Gem::Version
|
110
194
|
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: rspec-html-matchers
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
111
209
|
- !ruby/object:Gem::Dependency
|
112
210
|
name: capybara
|
113
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -172,15 +270,319 @@ extensions: []
|
|
172
270
|
extra_rdoc_files: []
|
173
271
|
files:
|
174
272
|
- ".gitignore"
|
273
|
+
- ".rspec"
|
274
|
+
- ".travis.yml"
|
175
275
|
- Gemfile
|
176
276
|
- LICENSE.txt
|
177
277
|
- README.md
|
178
278
|
- Rakefile
|
279
|
+
- app/actors/concerns/worthwhile/manages_embargoes_actor.rb
|
280
|
+
- app/actors/curation_concern/base_actor.rb
|
281
|
+
- app/actors/curation_concern/generic_file_actor.rb
|
282
|
+
- app/actors/curation_concern/generic_work_actor.rb
|
283
|
+
- app/actors/curation_concern/linked_resource_actor.rb
|
284
|
+
- app/assets/images/default.png
|
285
|
+
- app/assets/images/nope.png
|
286
|
+
- app/assets/javascripts/.gitkeep
|
287
|
+
- app/assets/javascripts/modernizr.js
|
288
|
+
- app/assets/javascripts/worthwhile/.gitkeep
|
289
|
+
- app/assets/javascripts/worthwhile/accept_contributor_agreement.js
|
290
|
+
- app/assets/javascripts/worthwhile/application.js
|
291
|
+
- app/assets/javascripts/worthwhile/browse_everything_implement.js
|
292
|
+
- app/assets/javascripts/worthwhile/embargoes.js
|
293
|
+
- app/assets/javascripts/worthwhile/facet_mine.js
|
294
|
+
- app/assets/javascripts/worthwhile/help_modal.js
|
295
|
+
- app/assets/javascripts/worthwhile/link_groups.js.coffee
|
296
|
+
- app/assets/javascripts/worthwhile/link_users.js.coffee
|
297
|
+
- app/assets/javascripts/worthwhile/manage_repeating_fields.js
|
298
|
+
- app/assets/javascripts/worthwhile/proxy_rights.js.coffee
|
299
|
+
- app/assets/javascripts/worthwhile/proxy_submission.js
|
300
|
+
- app/assets/javascripts/worthwhile/select_works.js.coffee
|
301
|
+
- app/assets/javascripts/worthwhile/worthwhile.js
|
302
|
+
- app/assets/stylesheets/worthwhile.css.scss
|
303
|
+
- app/assets/stylesheets/worthwhile/_global-variables.css.scss
|
304
|
+
- app/assets/stylesheets/worthwhile/_modules.css.scss
|
305
|
+
- app/assets/stylesheets/worthwhile/_positioning.css.scss
|
306
|
+
- app/assets/stylesheets/worthwhile/_theme.css.scss
|
307
|
+
- app/assets/stylesheets/worthwhile/_typography.css.scss
|
308
|
+
- app/assets/stylesheets/worthwhile/_variables_bootstrap.css.scss
|
309
|
+
- app/assets/stylesheets/worthwhile/_worthwhile.css.scss
|
310
|
+
- app/assets/stylesheets/worthwhile/downloads.css.scss
|
311
|
+
- app/assets/stylesheets/worthwhile/help_requests.css.scss
|
312
|
+
- app/assets/stylesheets/worthwhile/modules/accessibility.css.scss
|
313
|
+
- app/assets/stylesheets/worthwhile/modules/accordion.css.scss
|
314
|
+
- app/assets/stylesheets/worthwhile/modules/attributes.css.scss
|
315
|
+
- app/assets/stylesheets/worthwhile/modules/classify_work.css.scss
|
316
|
+
- app/assets/stylesheets/worthwhile/modules/collections.css.scss
|
317
|
+
- app/assets/stylesheets/worthwhile/modules/embargoes.css.scss
|
318
|
+
- app/assets/stylesheets/worthwhile/modules/emphatic_action_area.css.scss
|
319
|
+
- app/assets/stylesheets/worthwhile/modules/forms.css.scss
|
320
|
+
- app/assets/stylesheets/worthwhile/modules/multi_value_fields.css.scss
|
321
|
+
- app/assets/stylesheets/worthwhile/modules/pagination.css.scss
|
322
|
+
- app/assets/stylesheets/worthwhile/modules/search_results.css.scss
|
323
|
+
- app/assets/stylesheets/worthwhile/modules/site_actions.css.scss
|
324
|
+
- app/assets/stylesheets/worthwhile/modules/site_search.css.scss
|
325
|
+
- app/controllers/catalog_controller.rb
|
326
|
+
- app/controllers/collections_controller.rb
|
327
|
+
- app/controllers/concerns/worthwhile/application_controller_behavior.rb
|
328
|
+
- app/controllers/concerns/worthwhile/catalog_controller.rb
|
329
|
+
- app/controllers/concerns/worthwhile/curation_concern_controller.rb
|
330
|
+
- app/controllers/concerns/worthwhile/files_controller.rb
|
331
|
+
- app/controllers/concerns/worthwhile/manages_embargoes.rb
|
332
|
+
- app/controllers/concerns/worthwhile/parent_container.rb
|
333
|
+
- app/controllers/concerns/worthwhile/themed_layout_controller.rb
|
334
|
+
- app/controllers/concerns/worthwhile/without_namespace.rb
|
335
|
+
- app/controllers/curation_concern/generic_files_controller.rb
|
336
|
+
- app/controllers/curation_concern/generic_works_controller.rb
|
337
|
+
- app/controllers/curation_concern/linked_resources_controller.rb
|
338
|
+
- app/controllers/curation_concern/permissions_controller.rb
|
339
|
+
- app/controllers/downloads_controller.rb
|
340
|
+
- app/controllers/embargoes_controller.rb
|
341
|
+
- app/controllers/leases_controller.rb
|
342
|
+
- app/controllers/registrations_controller.rb
|
343
|
+
- app/controllers/sessions_controller.rb
|
344
|
+
- app/controllers/worthwhile/application_controller.rb
|
345
|
+
- app/controllers/worthwhile/classify_concerns_controller.rb
|
346
|
+
- app/datastreams/generic_work_metadata.rb
|
347
|
+
- app/datastreams/worthwhile/generic_work_rdf_properties.rb
|
348
|
+
- app/datastreams/worthwhile/properties_datastream.rb
|
349
|
+
- app/helpers/curate/collections_helper.rb
|
350
|
+
- app/helpers/worthwhile/ability_helper.rb
|
351
|
+
- app/helpers/worthwhile/attribute_helper.rb
|
352
|
+
- app/helpers/worthwhile/catalog_helper.rb
|
353
|
+
- app/helpers/worthwhile/collections_helper.rb
|
354
|
+
- app/helpers/worthwhile/embargo_helper.rb
|
355
|
+
- app/helpers/worthwhile/generic_file_helper.rb
|
356
|
+
- app/helpers/worthwhile/lease_helper.rb
|
357
|
+
- app/helpers/worthwhile/main_app_helpers.rb
|
358
|
+
- app/helpers/worthwhile/render_constraints_helper.rb
|
359
|
+
- app/helpers/worthwhile/search_paths_helper.rb
|
360
|
+
- app/helpers/worthwhile/thumbnail_helper.rb
|
361
|
+
- app/helpers/worthwhile/title_helper.rb
|
362
|
+
- app/helpers/worthwhile/url_helper.rb
|
363
|
+
- app/inputs/multi_value_input.rb
|
364
|
+
- app/models/collection.rb
|
365
|
+
- app/models/concerns/curation_concern/collection_model.rb
|
366
|
+
- app/models/concerns/curation_concern/curatable.rb
|
367
|
+
- app/models/concerns/curation_concern/has_representative.rb
|
368
|
+
- app/models/concerns/curation_concern/human_readable_type.rb
|
369
|
+
- app/models/concerns/curation_concern/with_basic_metadata.rb
|
370
|
+
- app/models/concerns/curation_concern/with_editors.rb
|
371
|
+
- app/models/concerns/curation_concern/with_generic_files.rb
|
372
|
+
- app/models/concerns/curation_concern/with_linked_resources.rb
|
373
|
+
- app/models/concerns/curation_concern/work.rb
|
374
|
+
- app/models/concerns/worthwhile/ability.rb
|
375
|
+
- app/models/concerns/worthwhile/generic_file/versioned_content.rb
|
376
|
+
- app/models/concerns/worthwhile/generic_file_base.rb
|
377
|
+
- app/models/concerns/worthwhile/solr_document_behavior.rb
|
378
|
+
- app/models/generic_work.rb
|
379
|
+
- app/models/worthwhile/classify_concern.rb
|
380
|
+
- app/models/worthwhile/content_version.rb
|
381
|
+
- app/models/worthwhile/contributor_agreement.rb
|
382
|
+
- app/models/worthwhile/generic_file.rb
|
383
|
+
- app/models/worthwhile/linked_resource.rb
|
384
|
+
- app/models/worthwhile/quick_classification_query.rb
|
385
|
+
- app/services/worthwhile/curation_concern.rb
|
386
|
+
- app/services/worthwhile/embargo_service.rb
|
387
|
+
- app/services/worthwhile/lease_service.rb
|
388
|
+
- app/views/catalog/_action_menu_partials/_collection.html.erb
|
389
|
+
- app/views/catalog/_action_menu_partials/_default.html.erb
|
390
|
+
- app/views/catalog/_document.html.erb
|
391
|
+
- app/views/catalog/_document_list.html.erb
|
392
|
+
- app/views/catalog/_home_text.html.erb
|
393
|
+
- app/views/catalog/_index_default.html.erb
|
394
|
+
- app/views/catalog/_index_header_list_default.html.erb
|
395
|
+
- app/views/catalog/_navbar.html.erb
|
396
|
+
- app/views/catalog/_show_partials/_default.html.erb
|
397
|
+
- app/views/catalog/_show_partials/_default_details.html.erb
|
398
|
+
- app/views/catalog/_show_partials/_facets.html.erb
|
399
|
+
- app/views/catalog/index.html.erb
|
400
|
+
- app/views/collections/_batch_edits_actions.html.erb
|
401
|
+
- app/views/collections/_button_for_creating_empty_collection.html.erb
|
402
|
+
- app/views/collections/_collection.html.erb
|
403
|
+
- app/views/collections/_dashboard_document_list.html.erb
|
404
|
+
- app/views/collections/_document_list.html.erb
|
405
|
+
- app/views/collections/_edit_actions.html.erb
|
406
|
+
- app/views/collections/_edit_descriptions.html.erb
|
407
|
+
- app/views/collections/_form.html.erb
|
408
|
+
- app/views/collections/_form_for_select_collection.html.erb
|
409
|
+
- app/views/collections/_form_permission.html.erb
|
410
|
+
- app/views/collections/_form_required_information.html.erb
|
411
|
+
- app/views/collections/_identifier_and_action.html.erb
|
412
|
+
- app/views/collections/_media_display.html.erb
|
413
|
+
- app/views/collections/_paginate.html.erb
|
414
|
+
- app/views/collections/_search_collection_dashboard_form.html.erb
|
415
|
+
- app/views/collections/_show_actions.html.erb
|
416
|
+
- app/views/collections/_show_descriptions.html.erb
|
417
|
+
- app/views/collections/_show_fields.html.erb
|
418
|
+
- app/views/collections/_single_item_action_fields.html.erb
|
419
|
+
- app/views/collections/_sort_and_per_page.html.erb
|
420
|
+
- app/views/collections/_view_type_group.html.erb
|
421
|
+
- app/views/collections/edit.html.erb
|
422
|
+
- app/views/collections/new.html.erb
|
423
|
+
- app/views/collections/show.html.erb
|
424
|
+
- app/views/curate/collections/_add_to_collection_modal.html.erb
|
425
|
+
- app/views/curate/collections/_button_remove_from_collection.html.erb
|
426
|
+
- app/views/curate/collections/_form_to_add_member.html.erb
|
427
|
+
- app/views/curate/collections/add_member_form.html.erb
|
428
|
+
- app/views/curation_concern/base/_attributes.html.erb
|
429
|
+
- app/views/curation_concern/base/_collections.html.erb
|
430
|
+
- app/views/curation_concern/base/_form.html.erb
|
431
|
+
- app/views/curation_concern/base/_form_additional_information.html.erb
|
432
|
+
- app/views/curation_concern/base/_form_content_license.html.erb
|
433
|
+
- app/views/curation_concern/base/_form_contributor_agreement.html.erb
|
434
|
+
- app/views/curation_concern/base/_form_descriptive_fields.erb
|
435
|
+
- app/views/curation_concern/base/_form_files_and_links.html.erb
|
436
|
+
- app/views/curation_concern/base/_form_permission.html.erb
|
437
|
+
- app/views/curation_concern/base/_form_permission_embargo.html.erb
|
438
|
+
- app/views/curation_concern/base/_form_permission_lease.html.erb
|
439
|
+
- app/views/curation_concern/base/_form_permission_under_embargo.html.erb
|
440
|
+
- app/views/curation_concern/base/_form_permission_under_lease.html.erb
|
441
|
+
- app/views/curation_concern/base/_form_representative_image.html.erb
|
442
|
+
- app/views/curation_concern/base/_form_required_information.html.erb
|
443
|
+
- app/views/curation_concern/base/_form_supplementary_fields.html.erb
|
444
|
+
- app/views/curation_concern/base/_legally_binding_text.html.erb
|
445
|
+
- app/views/curation_concern/base/_related_files.html.erb
|
446
|
+
- app/views/curation_concern/base/_related_resources.html.erb
|
447
|
+
- app/views/curation_concern/base/_representative_media.html.erb
|
448
|
+
- app/views/curation_concern/base/edit.html.erb
|
449
|
+
- app/views/curation_concern/base/new.html.erb
|
450
|
+
- app/views/curation_concern/base/show.html.erb
|
451
|
+
- app/views/curation_concern/base/unauthorized.html.erb
|
452
|
+
- app/views/curation_concern/generic_files/_form.html.erb
|
453
|
+
- app/views/curation_concern/generic_files/_media_display.html.erb
|
454
|
+
- app/views/curation_concern/generic_files/edit.html.erb
|
455
|
+
- app/views/curation_concern/generic_files/show.html.erb
|
456
|
+
- app/views/curation_concern/generic_works/_generic_work.html.erb
|
457
|
+
- app/views/curation_concern/linked_resources/_form.html.erb
|
458
|
+
- app/views/curation_concern/linked_resources/edit.html.erb
|
459
|
+
- app/views/curation_concern/linked_resources/new.html.erb
|
460
|
+
- app/views/curation_concern/permissions/confirm.html.erb
|
461
|
+
- app/views/curation_concern/worthwhile/generic_files/_actions.html.erb
|
462
|
+
- app/views/curation_concern/worthwhile/generic_files/_generic_file.html.erb
|
463
|
+
- app/views/embargoes/_embargo_history.html.erb
|
464
|
+
- app/views/embargoes/_list_active_embargoes.html.erb
|
465
|
+
- app/views/embargoes/_list_deactivated_embargoes.html.erb
|
466
|
+
- app/views/embargoes/_list_expired_active_embargoes.html.erb
|
467
|
+
- app/views/embargoes/edit.html.erb
|
468
|
+
- app/views/embargoes/index.html.erb
|
469
|
+
- app/views/layouts/boilerplate.html.erb
|
470
|
+
- app/views/layouts/common_objects.html.erb
|
471
|
+
- app/views/layouts/curate_nd.html.erb
|
472
|
+
- app/views/layouts/curate_nd/1_column.html.erb
|
473
|
+
- app/views/layouts/curate_nd/2_column.html.erb
|
474
|
+
- app/views/layouts/curate_nd/catalog.html.erb
|
475
|
+
- app/views/layouts/curate_nd/dashboard.html.erb
|
476
|
+
- app/views/leases/_lease_history.html.erb
|
477
|
+
- app/views/leases/_list_active_leases.html.erb
|
478
|
+
- app/views/leases/_list_deactivated_leases.html.erb
|
479
|
+
- app/views/leases/_list_expired_active_leases.html.erb
|
480
|
+
- app/views/leases/edit.html.erb
|
481
|
+
- app/views/leases/index.html.erb
|
482
|
+
- app/views/shared/_add_content.html.erb
|
483
|
+
- app/views/shared/_brand_bar.html.erb
|
484
|
+
- app/views/shared/_flash_message.html.erb
|
485
|
+
- app/views/shared/_footer.html.erb
|
486
|
+
- app/views/shared/_ga.html.erb
|
487
|
+
- app/views/shared/_header.html.erb
|
488
|
+
- app/views/shared/_my_actions.html.erb
|
489
|
+
- app/views/shared/_site_actions.html.erb
|
490
|
+
- app/views/shared/_site_search.html.erb
|
491
|
+
- app/views/shared/_title_bar.html.erb
|
492
|
+
- app/views/worthwhile/classify_concerns/new.html.erb
|
493
|
+
- app/workers/visibility_copy_worker.rb
|
494
|
+
- config/initializers/simple_form.rb
|
495
|
+
- config/locales/sufia.en.yml
|
496
|
+
- config/locales/worthwhile.en.yml
|
497
|
+
- config/routes.rb
|
498
|
+
- lib/generators/worthwhile/install_generator.rb
|
499
|
+
- lib/generators/worthwhile/templates/worthwhile.css.scss
|
500
|
+
- lib/generators/worthwhile/templates/worthwhile.js
|
501
|
+
- lib/generators/worthwhile/templates/worthwhile_config.rb
|
502
|
+
- lib/generators/worthwhile/templates/worthwhile_helper.rb
|
179
503
|
- lib/worthwhile.rb
|
504
|
+
- lib/worthwhile/configuration.rb
|
505
|
+
- lib/worthwhile/controller_resource.rb
|
506
|
+
- lib/worthwhile/engine.rb
|
507
|
+
- lib/worthwhile/rails/routes.rb
|
508
|
+
- lib/worthwhile/spec_support.rb
|
180
509
|
- lib/worthwhile/version.rb
|
510
|
+
- spec/abilities/generic_file_abilities_spec.rb
|
511
|
+
- spec/abilities/generic_work_abilities_spec.rb
|
512
|
+
- spec/actors/curation_concern/generic_work_actor_spec.rb
|
513
|
+
- spec/actors/curation_concern/linked_resource_actor_spec.rb
|
514
|
+
- spec/actors/worthwile/manages_embargoes_actor_spec.rb
|
515
|
+
- spec/controllers/catalog_controller_spec.rb
|
516
|
+
- spec/controllers/collections_controller_spec.rb
|
517
|
+
- spec/controllers/curation_concern/generic_files_controller_spec.rb
|
518
|
+
- spec/controllers/curation_concern/generic_works_controller_spec.rb
|
519
|
+
- spec/controllers/curation_concern/linked_resources_controller_spec.rb
|
520
|
+
- spec/controllers/curation_concern/permissions_controller_spec.rb
|
521
|
+
- spec/controllers/downloads_controller_spec.rb
|
522
|
+
- spec/controllers/embargoes_controller_spec.rb
|
523
|
+
- spec/controllers/leases_controller_spec.rb
|
524
|
+
- spec/controllers/worthwhile/classify_concerns_controller_spec.rb
|
525
|
+
- spec/factories/collections_factory.rb
|
526
|
+
- spec/factories/create_curation_concern.rb
|
527
|
+
- spec/factories/generic_files.rb
|
528
|
+
- spec/factories/generic_works.rb
|
529
|
+
- spec/factories/linked_resources_factory.rb
|
530
|
+
- spec/factories/users.rb
|
531
|
+
- spec/features/add_external_link_spec.rb
|
532
|
+
- spec/features/add_file_spec.rb
|
533
|
+
- spec/features/collection_spec.rb
|
534
|
+
- spec/features/embargo_spec.rb
|
535
|
+
- spec/features/lease_spec.rb
|
536
|
+
- spec/features/update_file_spec.rb
|
537
|
+
- spec/fixtures/files/image.png
|
538
|
+
- spec/helpers/catalog_helper_spec.rb
|
539
|
+
- spec/helpers/configuration_helper_spec.rb
|
540
|
+
- spec/helpers/render_constraints_helper_spec.rb
|
541
|
+
- spec/helpers/thumbnail_helper_spec.rb
|
542
|
+
- spec/helpers/url_helper_spec.rb
|
543
|
+
- spec/matchers.rb
|
544
|
+
- spec/matchers/metadata_field_matchers.rb
|
545
|
+
- spec/models/collection_spec.rb
|
546
|
+
- spec/models/curation_concern/collection_model_spec.rb
|
547
|
+
- spec/models/curation_concern/work_spec.rb
|
548
|
+
- spec/models/generic_work_spec.rb
|
549
|
+
- spec/models/worthwhile/content_version_spec.rb
|
181
550
|
- spec/models/worthwhile/generic_file_spec.rb
|
551
|
+
- spec/models/worthwhile/linked_resource_spec.rb
|
552
|
+
- spec/routing/worthwhile/routes_spec.rb
|
553
|
+
- spec/services/embargo_service_spec.rb
|
554
|
+
- spec/services/lease_service_spec.rb
|
182
555
|
- spec/spec_helper.rb
|
556
|
+
- spec/support/controllers/engine_helpers.rb
|
557
|
+
- spec/support/curation_concern/factory_helpers.rb
|
558
|
+
- spec/support/features.rb
|
559
|
+
- spec/support/features/fixture_file_upload.rb
|
560
|
+
- spec/support/features/session_helpers.rb
|
561
|
+
- spec/support/shared/shared_examples_has_dc_metadata.rb
|
562
|
+
- spec/support/shared/shared_examples_is_a_curation_concern_model.rb
|
563
|
+
- spec/support/shared/shared_examples_is_embargoable.rb
|
564
|
+
- spec/support/shared/shared_examples_with_access_rights.rb
|
183
565
|
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
566
|
+
- spec/views/curation_concern/base/_attributes.html.erb_spec.rb
|
567
|
+
- spec/views/curation_concern/base/show.html.erb_spec.rb
|
568
|
+
- spec/views/shared/_add_content.html.erb_spec.rb
|
569
|
+
- spec/views/shared/_my_actions.html.erb_spec.rb
|
570
|
+
- spec/workers/visibility_copy_worker_spec.rb
|
571
|
+
- vendor/assets/images/ui-bg_glass_100_fdf5ce_1x400.png
|
572
|
+
- vendor/assets/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
|
573
|
+
- vendor/assets/javascripts/handlebars.js
|
574
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.autocomplete.js
|
575
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.core.js
|
576
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect-highlight.js
|
577
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.effect.js
|
578
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.menu.js
|
579
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.position.js
|
580
|
+
- vendor/assets/javascripts/jquery-ui-1.9.2/jquery.ui.widget.js
|
581
|
+
- vendor/assets/javascripts/jquery.tokeninput.js
|
582
|
+
- vendor/assets/stylesheets/jquery-ui-lightness.css
|
583
|
+
- vendor/assets/stylesheets/token-input-facebook.css
|
584
|
+
- vendor/assets/stylesheets/token-input-mac.css
|
585
|
+
- vendor/assets/stylesheets/token-input.css
|
184
586
|
- worthwhile.gemspec
|
185
587
|
homepage: ''
|
186
588
|
licenses:
|
@@ -197,9 +599,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
197
599
|
version: '0'
|
198
600
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
199
601
|
requirements:
|
200
|
-
- - "
|
602
|
+
- - ">="
|
201
603
|
- !ruby/object:Gem::Version
|
202
|
-
version:
|
604
|
+
version: '0'
|
203
605
|
requirements: []
|
204
606
|
rubyforge_project:
|
205
607
|
rubygems_version: 2.2.2
|
@@ -207,6 +609,64 @@ signing_key:
|
|
207
609
|
specification_version: 4
|
208
610
|
summary: A simple institutional repository for Hydra
|
209
611
|
test_files:
|
612
|
+
- spec/abilities/generic_file_abilities_spec.rb
|
613
|
+
- spec/abilities/generic_work_abilities_spec.rb
|
614
|
+
- spec/actors/curation_concern/generic_work_actor_spec.rb
|
615
|
+
- spec/actors/curation_concern/linked_resource_actor_spec.rb
|
616
|
+
- spec/actors/worthwile/manages_embargoes_actor_spec.rb
|
617
|
+
- spec/controllers/catalog_controller_spec.rb
|
618
|
+
- spec/controllers/collections_controller_spec.rb
|
619
|
+
- spec/controllers/curation_concern/generic_files_controller_spec.rb
|
620
|
+
- spec/controllers/curation_concern/generic_works_controller_spec.rb
|
621
|
+
- spec/controllers/curation_concern/linked_resources_controller_spec.rb
|
622
|
+
- spec/controllers/curation_concern/permissions_controller_spec.rb
|
623
|
+
- spec/controllers/downloads_controller_spec.rb
|
624
|
+
- spec/controllers/embargoes_controller_spec.rb
|
625
|
+
- spec/controllers/leases_controller_spec.rb
|
626
|
+
- spec/controllers/worthwhile/classify_concerns_controller_spec.rb
|
627
|
+
- spec/factories/collections_factory.rb
|
628
|
+
- spec/factories/create_curation_concern.rb
|
629
|
+
- spec/factories/generic_files.rb
|
630
|
+
- spec/factories/generic_works.rb
|
631
|
+
- spec/factories/linked_resources_factory.rb
|
632
|
+
- spec/factories/users.rb
|
633
|
+
- spec/features/add_external_link_spec.rb
|
634
|
+
- spec/features/add_file_spec.rb
|
635
|
+
- spec/features/collection_spec.rb
|
636
|
+
- spec/features/embargo_spec.rb
|
637
|
+
- spec/features/lease_spec.rb
|
638
|
+
- spec/features/update_file_spec.rb
|
639
|
+
- spec/fixtures/files/image.png
|
640
|
+
- spec/helpers/catalog_helper_spec.rb
|
641
|
+
- spec/helpers/configuration_helper_spec.rb
|
642
|
+
- spec/helpers/render_constraints_helper_spec.rb
|
643
|
+
- spec/helpers/thumbnail_helper_spec.rb
|
644
|
+
- spec/helpers/url_helper_spec.rb
|
645
|
+
- spec/matchers.rb
|
646
|
+
- spec/matchers/metadata_field_matchers.rb
|
647
|
+
- spec/models/collection_spec.rb
|
648
|
+
- spec/models/curation_concern/collection_model_spec.rb
|
649
|
+
- spec/models/curation_concern/work_spec.rb
|
650
|
+
- spec/models/generic_work_spec.rb
|
651
|
+
- spec/models/worthwhile/content_version_spec.rb
|
210
652
|
- spec/models/worthwhile/generic_file_spec.rb
|
653
|
+
- spec/models/worthwhile/linked_resource_spec.rb
|
654
|
+
- spec/routing/worthwhile/routes_spec.rb
|
655
|
+
- spec/services/embargo_service_spec.rb
|
656
|
+
- spec/services/lease_service_spec.rb
|
211
657
|
- spec/spec_helper.rb
|
658
|
+
- spec/support/controllers/engine_helpers.rb
|
659
|
+
- spec/support/curation_concern/factory_helpers.rb
|
660
|
+
- spec/support/features.rb
|
661
|
+
- spec/support/features/fixture_file_upload.rb
|
662
|
+
- spec/support/features/session_helpers.rb
|
663
|
+
- spec/support/shared/shared_examples_has_dc_metadata.rb
|
664
|
+
- spec/support/shared/shared_examples_is_a_curation_concern_model.rb
|
665
|
+
- spec/support/shared/shared_examples_is_embargoable.rb
|
666
|
+
- spec/support/shared/shared_examples_with_access_rights.rb
|
212
667
|
- spec/test_app_templates/lib/generators/test_app_generator.rb
|
668
|
+
- spec/views/curation_concern/base/_attributes.html.erb_spec.rb
|
669
|
+
- spec/views/curation_concern/base/show.html.erb_spec.rb
|
670
|
+
- spec/views/shared/_add_content.html.erb_spec.rb
|
671
|
+
- spec/views/shared/_my_actions.html.erb_spec.rb
|
672
|
+
- spec/workers/visibility_copy_worker_spec.rb
|