hyrax 3.0.2 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +22 -0
  3. data/.dassie/Gemfile +10 -5
  4. data/.dassie/config/initializers/hyrax.rb +5 -0
  5. data/.dockerignore +3 -0
  6. data/.env +0 -1
  7. data/.rubocop.yml +4 -0
  8. data/CONTAINERS.md +1 -1
  9. data/Dockerfile +12 -6
  10. data/Gemfile +21 -27
  11. data/app/actors/hyrax/actors/base_actor.rb +1 -1
  12. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +85 -63
  13. data/app/actors/hyrax/actors/create_with_remote_files_ordered_members_actor.rb +7 -42
  14. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +20 -8
  15. data/app/controllers/concerns/hyrax/embargoes_controller_behavior.rb +21 -9
  16. data/app/controllers/concerns/hyrax/leases_controller_behavior.rb +14 -5
  17. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +22 -3
  18. data/app/controllers/hyrax/admin/workflows_controller.rb +8 -2
  19. data/app/controllers/hyrax/dashboard/collection_members_controller.rb +13 -9
  20. data/app/controllers/hyrax/dashboard/collections_controller.rb +12 -10
  21. data/app/controllers/hyrax/file_sets_controller.rb +49 -13
  22. data/app/controllers/hyrax/permissions_controller.rb +3 -4
  23. data/app/controllers/hyrax/workflow_actions_controller.rb +3 -1
  24. data/app/forms/hyrax/forms/collection_form.rb +7 -3
  25. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +24 -2
  26. data/app/forms/hyrax/forms/file_set_form.rb +46 -0
  27. data/app/forms/hyrax/forms/permission.rb +23 -0
  28. data/app/forms/hyrax/forms/permission_template_form.rb +8 -2
  29. data/app/forms/hyrax/forms/resource_form.rb +10 -17
  30. data/app/forms/hyrax/forms/work_form.rb +5 -2
  31. data/app/helpers/hyrax/batch_edits_helper.rb +3 -1
  32. data/app/helpers/hyrax/collections_helper.rb +88 -2
  33. data/app/helpers/hyrax/dashboard_helper_behavior.rb +3 -7
  34. data/app/helpers/hyrax/file_set_helper.rb +25 -6
  35. data/app/helpers/hyrax/work_form_helper.rb +53 -0
  36. data/app/indexers/hyrax/administrative_set_indexer.rb +18 -0
  37. data/app/indexers/hyrax/valkyrie_indexer.rb +3 -3
  38. data/app/inputs/controlled_vocabulary_input.rb +2 -5
  39. data/app/jobs/attach_files_to_work_job.rb +19 -10
  40. data/app/jobs/attach_files_to_work_with_ordered_members_job.rb +6 -5
  41. data/app/jobs/inherit_permissions_job.rb +9 -5
  42. data/app/models/admin_set.rb +6 -25
  43. data/app/models/concerns/hyrax/ability.rb +3 -1
  44. data/app/models/concerns/hyrax/collection_behavior.rb +17 -44
  45. data/app/models/concerns/hyrax/file_set/characterization.rb +18 -12
  46. data/app/models/concerns/hyrax/solr_document_behavior.rb +9 -52
  47. data/app/models/concerns/hyrax/suppressible.rb +5 -0
  48. data/app/models/concerns/hyrax/user.rb +9 -3
  49. data/app/models/hyrax/file_set.rb +6 -0
  50. data/app/models/hyrax/pcdm_collection.rb +1 -0
  51. data/app/models/hyrax/permission_template.rb +98 -12
  52. data/app/models/hyrax/virus_scanner.rb +27 -18
  53. data/app/models/sipity/agent.rb +1 -0
  54. data/app/models/sipity/entity.rb +30 -8
  55. data/app/models/sipity/workflow.rb +1 -0
  56. data/app/models/sipity.rb +42 -0
  57. data/app/presenters/hyrax/admin_set_options_presenter.rb +2 -10
  58. data/app/presenters/hyrax/admin_set_presenter.rb +5 -1
  59. data/app/presenters/hyrax/admin_set_selection_presenter.rb +116 -0
  60. data/app/presenters/hyrax/collection_presenter.rb +31 -6
  61. data/app/presenters/hyrax/file_set_presenter.rb +6 -1
  62. data/app/presenters/hyrax/file_usage.rb +3 -2
  63. data/app/presenters/hyrax/stats_usage_presenter.rb +2 -1
  64. data/app/presenters/hyrax/trophy_presenter.rb +33 -4
  65. data/app/presenters/hyrax/user_profile_presenter.rb +11 -1
  66. data/app/presenters/hyrax/version_list_presenter.rb +19 -0
  67. data/app/presenters/hyrax/version_presenter.rb +3 -2
  68. data/app/presenters/hyrax/work_show_presenter.rb +25 -4
  69. data/app/presenters/hyrax/work_usage.rb +5 -3
  70. data/app/renderers/hyrax/renderers/attribute_renderer.rb +10 -2
  71. data/app/search_builders/hyrax/admin_set_search_builder.rb +1 -1
  72. data/app/search_builders/hyrax/my/collections_search_builder.rb +1 -1
  73. data/app/services/hyrax/admin_set_create_service.rb +3 -1
  74. data/app/services/hyrax/collections/collection_member_search_service.rb +72 -0
  75. data/app/services/hyrax/collections/collection_member_service.rb +112 -27
  76. data/app/services/hyrax/collections/migration_service.rb +4 -2
  77. data/app/services/hyrax/collections/nested_collection_persistence_service.rb +12 -13
  78. data/app/services/hyrax/collections/nested_collection_query_service.rb +2 -0
  79. data/app/services/hyrax/collections/permissions_create_service.rb +6 -4
  80. data/app/services/hyrax/contextual_path.rb +23 -0
  81. data/app/services/hyrax/custom_queries/find_file_metadata.rb +7 -5
  82. data/app/services/hyrax/custom_queries/navigators/parent_collections_navigator.rb +46 -0
  83. data/app/services/hyrax/edit_permissions_service.rb +27 -20
  84. data/app/services/hyrax/find_objects_via_solr_service.rb +11 -7
  85. data/app/services/hyrax/multiple_membership_checker.rb +51 -31
  86. data/app/services/hyrax/resource_status.rb +7 -0
  87. data/app/services/hyrax/search_service.rb +4 -2
  88. data/app/services/hyrax/solr_query_builder_service.rb +29 -6
  89. data/app/services/hyrax/solr_query_service.rb +224 -0
  90. data/app/services/hyrax/solr_service.rb +8 -1
  91. data/app/services/hyrax/statistics/depositors/summary.rb +2 -1
  92. data/app/services/hyrax/work_uploads_handler.rb +17 -2
  93. data/app/services/hyrax/workflow/actionable_objects.rb +70 -0
  94. data/app/services/hyrax/workflow/object_in_workflow_decorator.rb +31 -0
  95. data/app/services/hyrax/workflow/status_list_service.rb +43 -13
  96. data/app/views/hyrax/base/_form_relationships.html.erb +1 -2
  97. data/app/views/hyrax/base/_form_rendering.html.erb +1 -1
  98. data/app/views/hyrax/base/_form_representative.html.erb +1 -1
  99. data/app/views/hyrax/base/_form_thumbnail.html.erb +1 -1
  100. data/app/views/hyrax/base/_guts4form.html.erb +2 -2
  101. data/app/views/hyrax/base/_representative_media.html.erb +1 -1
  102. data/app/views/hyrax/base/_show_actions.html.erb +1 -1
  103. data/app/views/hyrax/dashboard/collections/_form.html.erb +3 -3
  104. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +1 -1
  105. data/app/views/hyrax/dashboard/collections/edit.html.erb +4 -2
  106. data/app/views/hyrax/dashboard/collections/new.html.erb +4 -2
  107. data/app/views/hyrax/dashboard/collections/show.html.erb +1 -1
  108. data/app/views/hyrax/file_sets/edit.html.erb +1 -1
  109. data/app/views/hyrax/file_sets/media_display/_audio.html.erb +1 -1
  110. data/app/views/hyrax/file_sets/media_display/_default.html.erb +1 -1
  111. data/app/views/hyrax/file_sets/media_display/_image.html.erb +1 -1
  112. data/app/views/hyrax/file_sets/media_display/_office_document.html.erb +1 -1
  113. data/app/views/hyrax/file_sets/media_display/_pdf.html.erb +1 -1
  114. data/app/views/hyrax/file_sets/media_display/_video.html.erb +1 -1
  115. data/app/views/hyrax/file_sets/show.html.erb +1 -1
  116. data/app/views/hyrax/my/_admin_set_action_menu.html.erb +0 -11
  117. data/app/views/hyrax/my/_collection_action_menu.html.erb +1 -2
  118. data/app/views/hyrax/my/collections/_list_collections.html.erb +1 -1
  119. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +3 -5
  120. data/bin/solrcloud-assign-configset.sh +8 -5
  121. data/bin/solrcloud-upload-configset.sh +4 -2
  122. data/chart/hyrax/Chart.yaml +3 -3
  123. data/chart/hyrax/README.md +47 -1
  124. data/chart/hyrax/templates/_helpers.tpl +1 -1
  125. data/chart/hyrax/templates/configmap-env.yaml +1 -3
  126. data/chart/hyrax/templates/deployment-worker.yaml +6 -3
  127. data/chart/hyrax/templates/deployment.yaml +8 -3
  128. data/chart/hyrax/values.yaml +12 -0
  129. data/config/brakeman.ignore +2 -2
  130. data/config/locales/hyrax.de.yml +1 -1
  131. data/config/locales/hyrax.en.yml +1 -1
  132. data/config/locales/hyrax.es.yml +1 -1
  133. data/config/locales/hyrax.fr.yml +1 -1
  134. data/config/locales/hyrax.it.yml +1 -1
  135. data/config/locales/hyrax.pt-BR.yml +1 -1
  136. data/config/locales/hyrax.zh.yml +1 -1
  137. data/docker-compose.yml +1 -0
  138. data/documentation/developing-your-hyrax-based-app.md +1 -1
  139. data/documentation/legacyREADME.md +1 -1
  140. data/lib/generators/hyrax/templates/config/initializers/hyrax.rb +5 -0
  141. data/lib/hyrax/active_fedora_dummy_model.rb +62 -0
  142. data/lib/hyrax/configuration.rb +8 -0
  143. data/lib/hyrax/engine.rb +1 -0
  144. data/lib/hyrax/errors.rb +2 -0
  145. data/lib/hyrax/specs/capybara.rb +3 -1
  146. data/lib/hyrax/specs/shared_specs/valkyrie_storage_versions.rb +9 -0
  147. data/lib/hyrax/transactions/container.rb +21 -0
  148. data/lib/hyrax/transactions/file_set_destroy.rb +21 -0
  149. data/lib/hyrax/transactions/steps/add_file_sets.rb +3 -2
  150. data/lib/hyrax/transactions/steps/add_to_parent.rb +36 -0
  151. data/lib/hyrax/transactions/steps/remove_file_set_from_work.rb +47 -0
  152. data/lib/hyrax/transactions/work_create.rb +2 -1
  153. data/lib/hyrax/valkyrie_can_can_adapter.rb +1 -0
  154. data/lib/hyrax/version.rb +1 -1
  155. data/lib/hyrax.rb +9 -0
  156. data/lib/tasks/collection_type_global_id.rake +1 -1
  157. data/lib/tasks/regenerate_derivatives.rake +12 -0
  158. data/lib/wings/orm_converter.rb +18 -2
  159. data/lib/wings/setup.rb +1 -0
  160. data/lib/wings/valkyrie/storage.rb +56 -1
  161. data/template.rb +1 -1
  162. metadata +17 -2
data/lib/wings/setup.rb CHANGED
@@ -77,6 +77,7 @@ Valkyrie.config.storage_adapter = :active_fedora
77
77
  # A refactor is needed to add the default implementations to hyrax.rb and only handle the wings specific overrides here.
78
78
  custom_queries = [Hyrax::CustomQueries::Navigators::CollectionMembers,
79
79
  Hyrax::CustomQueries::Navigators::ChildCollectionsNavigator,
80
+ Hyrax::CustomQueries::Navigators::ParentCollectionsNavigator,
80
81
  Hyrax::CustomQueries::Navigators::ChildFilesetsNavigator,
81
82
  Hyrax::CustomQueries::Navigators::ChildWorksNavigator,
82
83
  Hyrax::CustomQueries::Navigators::FindFiles,
@@ -19,6 +19,7 @@ module Wings
19
19
  DEFAULT_CTYPE = 'application/octet-stream'
20
20
  LINK_HEADER = "<http://www.w3.org/ns/ldp#NonRDFSource>; rel=\"type\""
21
21
  FILES_PATH = 'files'
22
+ VERSIONS_SLUG = '/fcr:versions'
22
23
 
23
24
  attr_reader :sha1
24
25
 
@@ -27,6 +28,14 @@ module Wings
27
28
  super
28
29
  end
29
30
 
31
+ ##
32
+ # @param key [Symbol] the key for plugin behavior to check support for
33
+ #
34
+ # @return [Boolean] whether
35
+ def supports?(key)
36
+ key == :versions
37
+ end
38
+
30
39
  def upload(file:, original_filename:, resource:, content_type: DEFAULT_CTYPE, # rubocop:disable Metrics/ParameterLists
31
40
  resource_uri_transformer: default_resource_uri_transformer, use: Hydra::PCDM::Vocab::PCDMTerms.File,
32
41
  id_hint: 'original', **extra_arguments)
@@ -41,7 +50,49 @@ module Wings
41
50
  id_hint: id_hint, **extra_arguments)
42
51
  end
43
52
 
44
- find_by(id: ::Valkyrie::ID.new(id.to_s.sub(/^.+\/\//, PROTOCOL)))
53
+ find_by(id: cast_to_valkyrie_id(id))
54
+ end
55
+
56
+ ##
57
+ # @return [Enumerable<Version> ordered list of versions
58
+ def find_versions(id:)
59
+ response = connection.http.get(fedora_identifier(id: id) + VERSIONS_SLUG)
60
+ return [] if response.status == 404
61
+
62
+ reader = RDF::Reader.for(content_type: response.headers['content-type'])
63
+ version_graph = RDF::Graph.new << reader.new(response.body)
64
+
65
+ version_graph.query(predicate: RDF::Vocab::Fcrepo4.hasVersion).objects.map do |uri|
66
+ timestamp =
67
+ version_graph.query([uri, RDF::Vocab::Fcrepo4.created, :created])
68
+ .first_object
69
+ .object
70
+ Version.new(cast_to_valkyrie_id(uri.to_s), timestamp, self)
71
+ end.sort
72
+ end
73
+
74
+ ##
75
+ # abstractly, {Version} objects should have an {#id} and be orderable
76
+ # over {#<=>} (allowing e.g. `#sort` to define a consistent order---
77
+ # oldest to newest---for a collection of versions). the {#id} should be a
78
+ # globally unique identifier for the version.
79
+ #
80
+ # this implementation uses an orderable {#version_token}. in practice
81
+ # the token is the fcrepo created date for the version, as extracted from
82
+ # the versions graph.
83
+ Version = Struct.new(:id, :version_token, :adapter) do
84
+ include Comparable
85
+
86
+ ##
87
+ # @return [#read]
88
+ def io
89
+ adapter.find_by(id: id)
90
+ end
91
+
92
+ def <=>(other)
93
+ raise ArgumentError unless other.respond_to?(:version_token)
94
+ version_token <=> other.version_token
95
+ end
45
96
  end
46
97
 
47
98
  private
@@ -87,6 +138,10 @@ module Wings
87
138
 
88
139
  Hyrax.config.translate_id_to_uri.call(created_file.id)
89
140
  end
141
+
142
+ def cast_to_valkyrie_id(id)
143
+ ::Valkyrie::ID.new(id.to_s.sub(/^.+\/\//, PROTOCOL))
144
+ end
90
145
  end
91
146
  end
92
147
 
data/template.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  # Hack for https://github.com/rails/rails/issues/35153
3
3
  gsub_file 'Gemfile', /^gem ["']sqlite3["']$/, 'gem "sqlite3", "~> 1.3.0"'
4
- gem 'hyrax', '3.0.2'
4
+ gem 'hyrax', '3.1.0'
5
5
  run 'bundle install'
6
6
  generate 'hyrax:install', '-f'
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: 3.0.2
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2021-05-07 00:00:00.000000000 Z
17
+ date: 2021-09-09 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: rails
@@ -1722,6 +1722,8 @@ files:
1722
1722
  - app/forms/hyrax/forms/failed_submission_form_wrapper.rb
1723
1723
  - app/forms/hyrax/forms/file_manager_form.rb
1724
1724
  - app/forms/hyrax/forms/file_set_edit_form.rb
1725
+ - app/forms/hyrax/forms/file_set_form.rb
1726
+ - app/forms/hyrax/forms/permission.rb
1725
1727
  - app/forms/hyrax/forms/permission_template_form.rb
1726
1728
  - app/forms/hyrax/forms/resource_form.rb
1727
1729
  - app/forms/hyrax/forms/widgets/admin_set_embargo_period.rb
@@ -1764,6 +1766,7 @@ files:
1764
1766
  - app/indexers/concerns/hyrax/indexes_basic_metadata.rb
1765
1767
  - app/indexers/concerns/hyrax/indexes_linked_metadata.rb
1766
1768
  - app/indexers/hyrax/admin_set_indexer.rb
1769
+ - app/indexers/hyrax/administrative_set_indexer.rb
1767
1770
  - app/indexers/hyrax/basic_metadata_indexer.rb
1768
1771
  - app/indexers/hyrax/collection_indexer.rb
1769
1772
  - app/indexers/hyrax/collection_with_basic_metadata_indexer.rb
@@ -1939,6 +1942,7 @@ files:
1939
1942
  - app/presenters/hyrax/admin/workflow_roles_presenter.rb
1940
1943
  - app/presenters/hyrax/admin_set_options_presenter.rb
1941
1944
  - app/presenters/hyrax/admin_set_presenter.rb
1945
+ - app/presenters/hyrax/admin_set_selection_presenter.rb
1942
1946
  - app/presenters/hyrax/admin_stats_presenter.rb
1943
1947
  - app/presenters/hyrax/characterization_behavior.rb
1944
1948
  - app/presenters/hyrax/collapsable_section_presenter.rb
@@ -2052,6 +2056,7 @@ files:
2052
2056
  - app/services/hyrax/collection_thumbnail_path_service.rb
2053
2057
  - app/services/hyrax/collection_types/create_service.rb
2054
2058
  - app/services/hyrax/collection_types/permissions_service.rb
2059
+ - app/services/hyrax/collections/collection_member_search_service.rb
2055
2060
  - app/services/hyrax/collections/collection_member_service.rb
2056
2061
  - app/services/hyrax/collections/managed_collections_service.rb
2057
2062
  - app/services/hyrax/collections/migration_service.rb
@@ -2074,6 +2079,7 @@ files:
2074
2079
  - app/services/hyrax/custom_queries/navigators/child_works_navigator.rb
2075
2080
  - app/services/hyrax/custom_queries/navigators/collection_members.rb
2076
2081
  - app/services/hyrax/custom_queries/navigators/find_files.rb
2082
+ - app/services/hyrax/custom_queries/navigators/parent_collections_navigator.rb
2077
2083
  - app/services/hyrax/database_migrator.rb
2078
2084
  - app/services/hyrax/default_middleware_stack.rb
2079
2085
  - app/services/hyrax/derivative_path.rb
@@ -2141,6 +2147,7 @@ files:
2141
2147
  - app/services/hyrax/search_service.rb
2142
2148
  - app/services/hyrax/simple_schema_loader.rb
2143
2149
  - app/services/hyrax/solr_query_builder_service.rb
2150
+ - app/services/hyrax/solr_query_service.rb
2144
2151
  - app/services/hyrax/solr_service.rb
2145
2152
  - app/services/hyrax/statistics/collections/over_time.rb
2146
2153
  - app/services/hyrax/statistics/depositors/summary.rb
@@ -2172,6 +2179,7 @@ files:
2172
2179
  - app/services/hyrax/work_uploads_handler.rb
2173
2180
  - app/services/hyrax/workflow/abstract_notification.rb
2174
2181
  - app/services/hyrax/workflow/action_taken_service.rb
2182
+ - app/services/hyrax/workflow/actionable_objects.rb
2175
2183
  - app/services/hyrax/workflow/activate_object.rb
2176
2184
  - app/services/hyrax/workflow/changes_required_notification.rb
2177
2185
  - app/services/hyrax/workflow/deactivate_object.rb
@@ -2183,6 +2191,7 @@ files:
2183
2191
  - app/services/hyrax/workflow/notification_configuration_parameter.rb
2184
2192
  - app/services/hyrax/workflow/notification_generator.rb
2185
2193
  - app/services/hyrax/workflow/notification_service.rb
2194
+ - app/services/hyrax/workflow/object_in_workflow_decorator.rb
2186
2195
  - app/services/hyrax/workflow/pending_review_notification.rb
2187
2196
  - app/services/hyrax/workflow/permission_generator.rb
2188
2197
  - app/services/hyrax/workflow/permission_query.rb
@@ -2799,6 +2808,7 @@ files:
2799
2808
  - lib/generators/hyrax/work_resource/templates/work_spec.rb.erb
2800
2809
  - lib/generators/hyrax/work_resource/work_resource_generator.rb
2801
2810
  - lib/hyrax.rb
2811
+ - lib/hyrax/active_fedora_dummy_model.rb
2802
2812
  - lib/hyrax/arkivo.rb
2803
2813
  - lib/hyrax/arkivo/actor.rb
2804
2814
  - lib/hyrax/arkivo/config.rb
@@ -2848,6 +2858,7 @@ files:
2848
2858
  - lib/hyrax/specs/shared_specs/identifiers.rb
2849
2859
  - lib/hyrax/specs/shared_specs/indexers.rb
2850
2860
  - lib/hyrax/specs/shared_specs/metadata.rb
2861
+ - lib/hyrax/specs/shared_specs/valkyrie_storage_versions.rb
2851
2862
  - lib/hyrax/specs/shared_specs/workflow_method.rb
2852
2863
  - lib/hyrax/specs/spy_listener.rb
2853
2864
  - lib/hyrax/transactions.rb
@@ -2855,8 +2866,10 @@ files:
2855
2866
  - lib/hyrax/transactions/container.rb
2856
2867
  - lib/hyrax/transactions/create_work.rb
2857
2868
  - lib/hyrax/transactions/destroy_work.rb
2869
+ - lib/hyrax/transactions/file_set_destroy.rb
2858
2870
  - lib/hyrax/transactions/steps/add_file_sets.rb
2859
2871
  - lib/hyrax/transactions/steps/add_to_collections.rb
2872
+ - lib/hyrax/transactions/steps/add_to_parent.rb
2860
2873
  - lib/hyrax/transactions/steps/apply_collection_permission_template.rb
2861
2874
  - lib/hyrax/transactions/steps/apply_permission_template.rb
2862
2875
  - lib/hyrax/transactions/steps/apply_visibility.rb
@@ -2864,6 +2877,7 @@ files:
2864
2877
  - lib/hyrax/transactions/steps/destroy_work.rb
2865
2878
  - lib/hyrax/transactions/steps/ensure_admin_set.rb
2866
2879
  - lib/hyrax/transactions/steps/ensure_permission_template.rb
2880
+ - lib/hyrax/transactions/steps/remove_file_set_from_work.rb
2867
2881
  - lib/hyrax/transactions/steps/save.rb
2868
2882
  - lib/hyrax/transactions/steps/save_access_control.rb
2869
2883
  - lib/hyrax/transactions/steps/save_work.rb
@@ -2890,6 +2904,7 @@ files:
2890
2904
  - lib/tasks/hyrax_user.rake
2891
2905
  - lib/tasks/install.rake
2892
2906
  - lib/tasks/migrate.rake
2907
+ - lib/tasks/regenerate_derivatives.rake
2893
2908
  - lib/tasks/reindex.rake
2894
2909
  - lib/tasks/stats_tasks.rake
2895
2910
  - lib/tasks/universal_viewer.rake