iiif_print 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +18 -0
  3. data/.github/PULL_REQUEST_TEMPLATE.md +16 -0
  4. data/.github/workflows/build-lint-test-action.yaml +4 -5
  5. data/.gitignore +5 -4
  6. data/.rubocop.yml +1 -0
  7. data/.solargraph.yml +19 -0
  8. data/Gemfile.lock +1025 -0
  9. data/README.md +98 -9
  10. data/Rakefile +6 -0
  11. data/app/actors/iiif_print/actors/cleanup_file_sets_actor_decorator.rb +24 -0
  12. data/app/actors/iiif_print/actors/file_set_actor_decorator.rb +30 -28
  13. data/app/controllers/iiif_print/split_pdfs_controller.rb +38 -0
  14. data/app/helpers/iiif_print/iiif_helper_decorator.rb +32 -0
  15. data/app/helpers/iiif_print/iiif_print_helper_behavior.rb +23 -0
  16. data/app/helpers/iiif_print_helper.rb +0 -20
  17. data/app/indexers/concerns/iiif_print/child_indexer.rb +9 -3
  18. data/app/indexers/concerns/iiif_print/file_set_indexer.rb +17 -4
  19. data/app/models/concerns/iiif_print/set_child_flag.rb +9 -0
  20. data/app/models/concerns/iiif_print/solr/document.rb +14 -0
  21. data/app/models/iiif_print/iiif_search_decorator.rb +35 -0
  22. data/app/models/iiif_print/iiif_search_response_decorator.rb +25 -2
  23. data/app/models/iiif_print/pending_relationship.rb +3 -0
  24. data/app/presenters/iiif_print/iiif_manifest_presenter_behavior.rb +120 -0
  25. data/app/presenters/iiif_print/iiif_manifest_presenter_factory_behavior.rb +1 -1
  26. data/app/presenters/iiif_print/work_show_presenter_decorator.rb +19 -10
  27. data/app/search_builders/concerns/iiif_print/allinson_flex_fields.rb +15 -0
  28. data/app/search_builders/concerns/iiif_print/highlight_search_params.rb +2 -1
  29. data/app/services/iiif_print/derivative_rodeo_service.rb +382 -0
  30. data/app/services/iiif_print/manifest_builder_service_behavior.rb +88 -31
  31. data/app/services/iiif_print/pluggable_derivative_service.rb +3 -9
  32. data/app/views/catalog/_index_header_list_default.html.erb +13 -0
  33. data/app/views/hyrax/base/_representative_media.html.erb +4 -3
  34. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +1 -1
  35. data/app/views/hyrax/file_sets/_actions.html.erb +2 -1
  36. data/app/views/hyrax/file_sets/_show_actions.html.erb +24 -0
  37. data/config/locales/iiif_print.en.yml +4 -0
  38. data/config/routes.rb +3 -0
  39. data/db/migrate/20231110163052_add_model_details_to_iiif_print_pending_relationships.rb +7 -0
  40. data/docker-compose.yml +2 -2
  41. data/iiif_print.gemspec +10 -9
  42. data/lib/generators/iiif_print/install_generator.rb +21 -1
  43. data/lib/generators/iiif_print/templates/config/initializers/iiif_print.rb +11 -4
  44. data/lib/generators/iiif_print/templates/helpers/iiif_print_helper.rb +5 -0
  45. data/lib/iiif_print/base_derivative_service.rb +2 -1
  46. data/lib/iiif_print/blacklight_iiif_search/annotation_decorator.rb +57 -5
  47. data/lib/iiif_print/catalog_search_builder.rb +5 -1
  48. data/lib/iiif_print/configuration.rb +145 -8
  49. data/lib/iiif_print/data/fileset_helper.rb +1 -1
  50. data/lib/iiif_print/data/work_derivatives.rb +3 -3
  51. data/lib/iiif_print/engine.rb +7 -13
  52. data/lib/iiif_print/errors.rb +18 -0
  53. data/lib/iiif_print/homepage_search_builder.rb +17 -0
  54. data/lib/iiif_print/image_tool.rb +12 -8
  55. data/lib/iiif_print/jobs/child_works_from_pdf_job.rb +74 -33
  56. data/lib/iiif_print/jobs/create_relationships_job.rb +80 -31
  57. data/lib/iiif_print/jobs/request_split_pdf_job.rb +31 -0
  58. data/lib/iiif_print/lineage_service.rb +29 -8
  59. data/lib/iiif_print/metadata.rb +67 -48
  60. data/lib/iiif_print/split_pdfs/base_splitter.rb +142 -0
  61. data/lib/iiif_print/split_pdfs/child_work_creation_from_pdf_service.rb +68 -32
  62. data/lib/iiif_print/split_pdfs/derivative_rodeo_splitter.rb +166 -0
  63. data/lib/iiif_print/split_pdfs/destroy_pdf_child_works_service.rb +33 -0
  64. data/lib/iiif_print/split_pdfs/pages_to_jpgs_splitter.rb +19 -0
  65. data/lib/iiif_print/split_pdfs/pages_to_pngs_splitter.rb +26 -0
  66. data/lib/iiif_print/split_pdfs/pages_to_tiffs_splitter.rb +41 -0
  67. data/lib/iiif_print/split_pdfs/pdf_image_extraction_service.rb +64 -59
  68. data/lib/iiif_print/text_extraction/hocr_reader.rb +7 -3
  69. data/lib/iiif_print/text_extraction/page_ocr.rb +5 -4
  70. data/lib/iiif_print/version.rb +1 -1
  71. data/lib/iiif_print.rb +167 -12
  72. data/lib/samvera/derivatives/configuration.rb +83 -0
  73. data/lib/samvera/derivatives/hyrax.rb +129 -0
  74. data/lib/samvera/derivatives.rb +238 -0
  75. data/spec/factories/newspaper_page_solr_document.rb +9 -1
  76. data/spec/fixtures/authorities/licenses.yml +4 -0
  77. data/spec/fixtures/authorities/rights_statements.yml +4 -0
  78. data/spec/iiif_print/base_derivative_service_spec.rb +20 -3
  79. data/spec/iiif_print/blacklight_iiif_search/annotation_decorator_spec.rb +11 -3
  80. data/spec/iiif_print/catalog_search_builder_spec.rb +1 -1
  81. data/spec/iiif_print/configuration_spec.rb +141 -15
  82. data/spec/iiif_print/jobs/child_works_from_pdf_job_spec.rb +7 -2
  83. data/spec/iiif_print/jobs/create_relationships_job_spec.rb +110 -9
  84. data/spec/iiif_print/lineage_service_spec.rb +1 -1
  85. data/spec/iiif_print/metadata_spec.rb +157 -23
  86. data/spec/iiif_print/split_pdfs/base_splitter_spec.rb +27 -0
  87. data/spec/iiif_print/split_pdfs/derivative_rodeo_splitter_spec.rb +80 -0
  88. data/spec/iiif_print/split_pdfs/destroy_pdf_child_works_service_spec.rb +92 -0
  89. data/spec/iiif_print/split_pdfs/pages_to_jpgs_splitter_spec.rb +22 -0
  90. data/spec/iiif_print/split_pdfs/pages_to_pngs_splitter_spec.rb +18 -0
  91. data/spec/iiif_print/split_pdfs/pages_to_tiffs_splitter_spec.rb +19 -0
  92. data/spec/iiif_print/text_extraction/hocr_reader_spec.rb +2 -2
  93. data/spec/iiif_print_spec.rb +125 -5
  94. data/spec/models/iiif_print/iiif_search_decorator_spec.rb +27 -0
  95. data/spec/presenters/iiif_print/iiif_manifest_presenter_behavior_spec.rb +51 -0
  96. data/spec/samvera/derivatives/configuration_spec.rb +41 -0
  97. data/spec/samvera/derivatives/hyrax_spec.rb +62 -0
  98. data/spec/samvera/derivatives_spec.rb +54 -0
  99. data/spec/services/iiif_print/derivative_rodeo_service_spec.rb +103 -0
  100. data/spec/services/iiif_print/manifest_builder_service_behavior_spec.rb +20 -0
  101. data/spec/services/iiif_print/pluggable_derivative_service_spec.rb +8 -11
  102. data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
  103. data/tasks/copy_authorities_to_test_app.rake +11 -0
  104. data/tasks/iiif_print_dev.rake +4 -4
  105. metadata +123 -35
  106. data/app/helpers/hyrax/iiif_helper.rb +0 -22
  107. data/lib/iiif_print/split_pdfs/pages_into_images_service.rb +0 -130
  108. data/spec/iiif_print/split_pdfs/pages_into_images_service_spec.rb +0 -6
data/Gemfile.lock ADDED
@@ -0,0 +1,1025 @@
1
+ PATH
2
+ remote: /app/samvera/hyrax-webapp
3
+ specs:
4
+ iiif_print (1.0.0)
5
+ blacklight_iiif_search (>= 1.0, < 3.0)
6
+ derivative-rodeo (~> 0.5)
7
+ hyrax (>= 2.5, < 6)
8
+ nokogiri (>= 1.13.2)
9
+ rdf-vocab (~> 3.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ actioncable (5.2.8.1)
15
+ actionpack (= 5.2.8.1)
16
+ nio4r (~> 2.0)
17
+ websocket-driver (>= 0.6.1)
18
+ actionmailer (5.2.8.1)
19
+ actionpack (= 5.2.8.1)
20
+ actionview (= 5.2.8.1)
21
+ activejob (= 5.2.8.1)
22
+ mail (~> 2.5, >= 2.5.4)
23
+ rails-dom-testing (~> 2.0)
24
+ actionpack (5.2.8.1)
25
+ actionview (= 5.2.8.1)
26
+ activesupport (= 5.2.8.1)
27
+ rack (~> 2.0, >= 2.0.8)
28
+ rack-test (>= 0.6.3)
29
+ rails-dom-testing (~> 2.0)
30
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
31
+ actionview (5.2.8.1)
32
+ activesupport (= 5.2.8.1)
33
+ builder (~> 3.1)
34
+ erubi (~> 1.4)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
37
+ active-fedora (13.3.0)
38
+ active-triples (>= 0.11.0, < 2.0.0)
39
+ activemodel (>= 5.1)
40
+ activesupport (>= 5.1)
41
+ deprecation
42
+ faraday (~> 0.12)
43
+ faraday-encoding (>= 0.0.5)
44
+ ldp (>= 0.7.0, < 2)
45
+ rsolr (>= 1.1.2, < 3)
46
+ ruby-progressbar (~> 1.0)
47
+ active-triples (1.2.0)
48
+ activemodel (>= 3.0.0)
49
+ activesupport (>= 3.0.0)
50
+ rdf (>= 2.0.2, < 4.0)
51
+ rdf-vocab (>= 2.0, < 4.0)
52
+ active_encode (0.8.2)
53
+ rails
54
+ sprockets (< 4)
55
+ activejob (5.2.8.1)
56
+ activesupport (= 5.2.8.1)
57
+ globalid (>= 0.3.6)
58
+ activemodel (5.2.8.1)
59
+ activesupport (= 5.2.8.1)
60
+ activemodel-serializers-xml (1.0.2)
61
+ activemodel (> 5.x)
62
+ activesupport (> 5.x)
63
+ builder (~> 3.1)
64
+ activerecord (5.2.8.1)
65
+ activemodel (= 5.2.8.1)
66
+ activesupport (= 5.2.8.1)
67
+ arel (>= 9.0)
68
+ activerecord-import (1.5.1)
69
+ activerecord (>= 4.2)
70
+ activestorage (5.2.8.1)
71
+ actionpack (= 5.2.8.1)
72
+ activerecord (= 5.2.8.1)
73
+ marcel (~> 1.0.0)
74
+ activesupport (5.2.8.1)
75
+ concurrent-ruby (~> 1.0, >= 1.0.2)
76
+ i18n (>= 0.7, < 2)
77
+ minitest (~> 5.1)
78
+ tzinfo (~> 1.1)
79
+ addressable (2.8.5)
80
+ public_suffix (>= 2.0.2, < 6.0)
81
+ almond-rails (0.3.0)
82
+ rails (>= 4.2)
83
+ arel (9.0.0)
84
+ ast (2.4.2)
85
+ autoprefixer-rails (10.4.16.0)
86
+ execjs (~> 2)
87
+ awesome_nested_set (3.6.0)
88
+ activerecord (>= 4.0.0, < 7.2)
89
+ aws-eventstream (1.3.0)
90
+ aws-partitions (1.857.0)
91
+ aws-sdk-core (3.188.0)
92
+ aws-eventstream (~> 1, >= 1.0.2)
93
+ aws-partitions (~> 1, >= 1.651.0)
94
+ aws-sigv4 (~> 1.5)
95
+ jmespath (~> 1, >= 1.6.1)
96
+ aws-sdk-kms (1.73.0)
97
+ aws-sdk-core (~> 3, >= 3.188.0)
98
+ aws-sigv4 (~> 1.1)
99
+ aws-sdk-s3 (1.140.0)
100
+ aws-sdk-core (~> 3, >= 3.188.0)
101
+ aws-sdk-kms (~> 1)
102
+ aws-sigv4 (~> 1.6)
103
+ aws-sdk-sqs (1.68.0)
104
+ aws-sdk-core (~> 3, >= 3.188.0)
105
+ aws-sigv4 (~> 1.1)
106
+ aws-sigv4 (1.7.0)
107
+ aws-eventstream (~> 1, >= 1.0.2)
108
+ babel-source (5.8.35)
109
+ babel-transpiler (0.7.0)
110
+ babel-source (>= 4.0, < 6)
111
+ execjs (~> 2.0)
112
+ backport (1.2.0)
113
+ bcp47 (0.3.3)
114
+ i18n
115
+ bcrypt (3.1.20)
116
+ benchmark (0.3.0)
117
+ bindex (0.8.1)
118
+ bixby (5.0.2)
119
+ rubocop (= 1.28.2)
120
+ rubocop-ast
121
+ rubocop-performance
122
+ rubocop-rails
123
+ rubocop-rspec
124
+ blacklight (6.25.0)
125
+ bootstrap-sass (~> 3.2)
126
+ deprecation
127
+ globalid
128
+ jbuilder (~> 2.7)
129
+ kaminari (>= 0.15)
130
+ nokogiri (~> 1.6)
131
+ rails (>= 4.2, < 6)
132
+ rsolr (>= 1.0.6, < 3)
133
+ twitter-typeahead-rails (= 0.11.1.pre.corejavascript)
134
+ blacklight-access_controls (0.6.2)
135
+ blacklight (~> 6.0)
136
+ cancancan (~> 1.8)
137
+ deprecation (~> 1.0)
138
+ blacklight-gallery (0.12.0)
139
+ blacklight (~> 6.3)
140
+ bootstrap-sass (~> 3.0)
141
+ openseadragon (>= 0.2.0)
142
+ rails
143
+ blacklight_iiif_search (1.0.0)
144
+ blacklight (~> 6.0)
145
+ iiif-presentation
146
+ rails (>= 4.2, < 6)
147
+ bootstrap-sass (3.4.1)
148
+ autoprefixer-rails (>= 5.2.1)
149
+ sassc (>= 2.0.0)
150
+ breadcrumbs_on_rails (3.0.1)
151
+ browse-everything (1.3.0)
152
+ addressable (~> 2.5)
153
+ aws-sdk-s3
154
+ dropbox_api (>= 0.1.20)
155
+ google-apis-drive_v3
156
+ googleauth (>= 0.6.6, < 2.0)
157
+ rails (>= 4.2, < 7.2)
158
+ ruby-box
159
+ signet (~> 0.8)
160
+ typhoeus
161
+ builder (3.2.4)
162
+ byebug (11.1.3)
163
+ cancancan (1.17.0)
164
+ carrierwave (1.3.4)
165
+ activemodel (>= 4.0.0)
166
+ activesupport (>= 4.0.0)
167
+ mime-types (>= 1.16)
168
+ ssrf_filter (~> 1.0, < 1.1.0)
169
+ clipboard-rails (1.7.1)
170
+ coffee-rails (4.2.2)
171
+ coffee-script (>= 2.2.0)
172
+ railties (>= 4.0.0)
173
+ coffee-script (2.4.1)
174
+ coffee-script-source
175
+ execjs
176
+ coffee-script-source (1.12.2)
177
+ concurrent-ruby (1.2.2)
178
+ connection_pool (2.4.1)
179
+ coveralls (0.8.23)
180
+ json (>= 1.8, < 3)
181
+ simplecov (~> 0.16.1)
182
+ term-ansicolor (~> 1.3)
183
+ thor (>= 0.19.4, < 2.0)
184
+ tins (~> 1.6)
185
+ crass (1.0.6)
186
+ database_cleaner (1.99.0)
187
+ date (3.3.4)
188
+ declarative (0.0.20)
189
+ declarative-builder (0.1.0)
190
+ declarative-option (< 0.2.0)
191
+ declarative-option (0.1.0)
192
+ deprecation (1.1.0)
193
+ activesupport
194
+ derivative-rodeo (0.5.2)
195
+ activesupport (>= 5)
196
+ aws-sdk-s3
197
+ aws-sdk-sqs
198
+ httparty
199
+ marcel
200
+ mime-types
201
+ mini_magick
202
+ nokogiri
203
+ devise (4.9.3)
204
+ bcrypt (~> 3.0)
205
+ orm_adapter (~> 0.1)
206
+ railties (>= 4.1.0)
207
+ responders
208
+ warden (~> 1.2.3)
209
+ devise-guests (0.8.1)
210
+ devise
211
+ diff-lcs (1.5.0)
212
+ disposable (0.4.7)
213
+ declarative (>= 0.0.9, < 1.0.0)
214
+ declarative-builder (< 0.2.0)
215
+ declarative-option (< 0.2.0)
216
+ representable (>= 2.4.0, <= 3.1.0)
217
+ uber (< 0.2.0)
218
+ docile (1.4.0)
219
+ draper (4.0.2)
220
+ actionpack (>= 5.0)
221
+ activemodel (>= 5.0)
222
+ activemodel-serializers-xml (>= 1.0)
223
+ activesupport (>= 5.0)
224
+ request_store (>= 1.0)
225
+ ruby2_keywords
226
+ dropbox_api (0.1.21)
227
+ faraday (< 3.0)
228
+ oauth2 (~> 1.1)
229
+ dry-configurable (0.16.1)
230
+ dry-core (~> 0.6)
231
+ zeitwerk (~> 2.6)
232
+ dry-container (0.11.0)
233
+ concurrent-ruby (~> 1.0)
234
+ dry-core (0.9.1)
235
+ concurrent-ruby (~> 1.0)
236
+ zeitwerk (~> 2.6)
237
+ dry-equalizer (0.3.0)
238
+ dry-events (0.2.0)
239
+ concurrent-ruby (~> 1.0)
240
+ dry-core (~> 0.4)
241
+ dry-equalizer (~> 0.2)
242
+ dry-inflector (0.3.0)
243
+ dry-initializer (3.1.1)
244
+ dry-logic (1.3.0)
245
+ concurrent-ruby (~> 1.0)
246
+ dry-core (~> 0.9, >= 0.9)
247
+ zeitwerk (~> 2.6)
248
+ dry-matcher (0.9.0)
249
+ dry-core (~> 0.4, >= 0.4.8)
250
+ dry-monads (1.4.0)
251
+ concurrent-ruby (~> 1.0)
252
+ dry-core (~> 0.7)
253
+ dry-schema (1.11.3)
254
+ concurrent-ruby (~> 1.0)
255
+ dry-configurable (~> 0.16, >= 0.16)
256
+ dry-core (~> 0.9, >= 0.9)
257
+ dry-initializer (~> 3.0)
258
+ dry-logic (~> 1.3)
259
+ dry-types (~> 1.6)
260
+ zeitwerk (~> 2.6)
261
+ dry-struct (1.5.2)
262
+ dry-core (~> 0.9, >= 0.9)
263
+ dry-types (~> 1.6)
264
+ ice_nine (~> 0.11)
265
+ zeitwerk (~> 2.6)
266
+ dry-transaction (0.13.3)
267
+ dry-container (>= 0.2.8)
268
+ dry-events (>= 0.1.0)
269
+ dry-matcher (>= 0.7.0)
270
+ dry-monads (>= 0.4.0)
271
+ dry-types (1.6.1)
272
+ concurrent-ruby (~> 1.0)
273
+ dry-container (~> 0.3)
274
+ dry-core (~> 0.9, >= 0.9)
275
+ dry-inflector (~> 0.1, >= 0.1.2)
276
+ dry-logic (~> 1.3, >= 1.3)
277
+ zeitwerk (~> 2.6)
278
+ dry-validation (1.9.0)
279
+ concurrent-ruby (~> 1.0)
280
+ dry-container (~> 0.7, >= 0.7.1)
281
+ dry-core (~> 0.9, >= 0.9)
282
+ dry-initializer (~> 3.0)
283
+ dry-schema (~> 1.11, >= 1.11.0)
284
+ zeitwerk (~> 2.6)
285
+ e2mmap (0.1.0)
286
+ ebnf (2.3.5)
287
+ htmlentities (~> 4.3)
288
+ rdf (~> 3.2)
289
+ scanf (~> 1.0)
290
+ sxp (~> 1.2)
291
+ unicode-types (~> 1.8)
292
+ engine_cart (2.5.0)
293
+ rails (>= 5.0)
294
+ equivalent-xml (0.6.0)
295
+ nokogiri (>= 1.4.3)
296
+ erubi (1.12.0)
297
+ ethon (0.16.0)
298
+ ffi (>= 1.15.0)
299
+ execjs (2.9.1)
300
+ factory_bot (4.11.1)
301
+ activesupport (>= 3.0.0)
302
+ faraday (0.17.6)
303
+ multipart-post (>= 1.2, < 3)
304
+ faraday-encoding (0.0.5)
305
+ faraday
306
+ fcrepo_wrapper (0.9.0)
307
+ ruby-progressbar
308
+ ffi (1.16.3)
309
+ flipflop (2.7.1)
310
+ activesupport (>= 4.0)
311
+ terminal-table (>= 1.8)
312
+ flot-rails (0.0.7)
313
+ jquery-rails
314
+ font-awesome-rails (4.7.0.8)
315
+ railties (>= 3.2, < 8.0)
316
+ geocoder (1.8.2)
317
+ globalid (1.1.0)
318
+ activesupport (>= 5.0)
319
+ google-apis-core (0.11.2)
320
+ addressable (~> 2.5, >= 2.5.1)
321
+ googleauth (>= 0.16.2, < 2.a)
322
+ httpclient (>= 2.8.1, < 3.a)
323
+ mini_mime (~> 1.0)
324
+ representable (~> 3.0)
325
+ retriable (>= 2.0, < 4.a)
326
+ rexml
327
+ webrick
328
+ google-apis-drive_v3 (0.44.0)
329
+ google-apis-core (>= 0.11.0, < 2.a)
330
+ googleauth (1.8.1)
331
+ faraday (>= 0.17.3, < 3.a)
332
+ jwt (>= 1.4, < 3.0)
333
+ multi_json (~> 1.11)
334
+ os (>= 0.9, < 2.0)
335
+ signet (>= 0.16, < 2.a)
336
+ haml (6.2.3)
337
+ temple (>= 0.8.2)
338
+ thor
339
+ tilt
340
+ hashie (5.0.0)
341
+ hiredis (0.6.3)
342
+ htmlentities (4.3.4)
343
+ http_logger (0.7.0)
344
+ httparty (0.21.0)
345
+ mini_mime (>= 1.0.0)
346
+ multi_xml (>= 0.5.2)
347
+ httpclient (2.8.3)
348
+ hydra-access-controls (11.0.7)
349
+ active-fedora (>= 10.0.0)
350
+ activesupport (>= 4, < 6)
351
+ blacklight (>= 5.16)
352
+ blacklight-access_controls (~> 0.6.0)
353
+ cancancan (~> 1.8)
354
+ deprecation (~> 1.0)
355
+ hydra-core (11.0.7)
356
+ hydra-access-controls (= 11.0.7)
357
+ railties (>= 4.0.0, < 6)
358
+ hydra-derivatives (3.7.0)
359
+ active-fedora (>= 11.5.6, != 13.2.1, != 13.2.0, != 13.1.3, != 13.1.2, != 13.1.1, != 13.1.0, != 13.0.0, != 12.2.1, != 12.2.0, != 12.1.1, != 12.1.0, != 12.0.3, != 12.0.2, != 12.0.1, != 12.0.0)
360
+ active_encode (~> 0.1)
361
+ activesupport (>= 4.0, < 7)
362
+ addressable (~> 2.5)
363
+ deprecation
364
+ mime-types (> 2.0, < 4.0)
365
+ mini_magick (>= 3.2, < 5)
366
+ hydra-editor (5.0.5)
367
+ active-fedora (>= 9.0.0)
368
+ activerecord (~> 5.0)
369
+ almond-rails (~> 0.1)
370
+ cancancan (~> 1.8)
371
+ rails (>= 5, < 6)
372
+ simple_form (>= 4.1.0, < 6.0)
373
+ sprockets (~> 3.7)
374
+ sprockets-es6
375
+ hydra-file_characterization (1.1.2)
376
+ activesupport (>= 3.0.0)
377
+ hydra-head (11.0.7)
378
+ hydra-access-controls (= 11.0.7)
379
+ hydra-core (= 11.0.7)
380
+ rails (>= 5.2, < 6.1)
381
+ hydra-pcdm (1.3.0)
382
+ active-fedora (>= 10, < 15)
383
+ mime-types (>= 1)
384
+ rdf-vocab
385
+ hydra-works (2.1.0)
386
+ activesupport (>= 5.2, < 7.1)
387
+ hydra-derivatives (~> 3.6)
388
+ hydra-file_characterization (~> 1.0)
389
+ hydra-pcdm (>= 0.9)
390
+ hyrax (3.6.0)
391
+ active-fedora (~> 13.1, >= 13.1.2)
392
+ almond-rails (~> 0.1)
393
+ awesome_nested_set (~> 3.1)
394
+ blacklight (~> 6.14)
395
+ blacklight-gallery (~> 0.7)
396
+ breadcrumbs_on_rails (~> 3.0)
397
+ browse-everything (>= 0.16, < 2.0)
398
+ carrierwave (~> 1.0)
399
+ clipboard-rails (~> 1.5)
400
+ draper (~> 4.0)
401
+ dry-equalizer (~> 0.2)
402
+ dry-events (~> 0.2.0)
403
+ dry-monads (< 1.5)
404
+ dry-struct (~> 1.0)
405
+ dry-transaction (~> 0.11)
406
+ dry-validation (~> 1.3)
407
+ flipflop (~> 2.3)
408
+ flot-rails (~> 0.0.6)
409
+ font-awesome-rails (~> 4.2)
410
+ hydra-derivatives (~> 3.3)
411
+ hydra-editor (~> 5.0, >= 5.0.4)
412
+ hydra-file_characterization (~> 1.1.2)
413
+ hydra-head (~> 11.0, >= 11.0.1)
414
+ hydra-works (>= 0.16)
415
+ iiif_manifest (>= 0.3, < 2.0)
416
+ jquery-datatables-rails (~> 3.4)
417
+ jquery-ui-rails (~> 6.0)
418
+ json-ld (< 3.2)
419
+ json-schema
420
+ kaminari_route_prefix (~> 0.1.1)
421
+ legato (~> 0.3)
422
+ linkeddata
423
+ mailboxer (~> 0.12)
424
+ nest (~> 3.1)
425
+ noid-rails (~> 3.0.0)
426
+ oauth
427
+ oauth2 (~> 1.2)
428
+ posix-spawn
429
+ power_converter (~> 0.1, >= 0.1.2)
430
+ psych (~> 3.3)
431
+ qa (~> 5.5, >= 5.5.1)
432
+ rails (~> 5.0)
433
+ rails_autolink (~> 1.1)
434
+ rdf-rdfxml
435
+ rdf-vocab (~> 3.0)
436
+ redis (~> 4.0)
437
+ redis-namespace (~> 1.5)
438
+ redlock (>= 0.1.2, < 2.0)
439
+ reform (~> 2.3)
440
+ reform-rails (~> 0.2.0)
441
+ retriable (>= 2.9, < 4.0)
442
+ samvera-nesting_indexer (~> 2.0)
443
+ sass-rails (~> 5.0)
444
+ select2-rails (~> 3.5)
445
+ signet
446
+ tinymce-rails (~> 5.10)
447
+ valkyrie (~> 2, >= 2.1.1)
448
+ i18n (1.14.1)
449
+ concurrent-ruby (~> 1.0)
450
+ ice_nine (0.11.2)
451
+ iiif-presentation (1.1.0)
452
+ activesupport (>= 3.2.18)
453
+ faraday (>= 0.9)
454
+ json
455
+ iiif_manifest (1.3.1)
456
+ activesupport (>= 4)
457
+ jaro_winkler (1.5.6)
458
+ jbuilder (2.11.5)
459
+ actionview (>= 5.0.0)
460
+ activesupport (>= 5.0.0)
461
+ jmespath (1.6.2)
462
+ jquery-datatables-rails (3.4.0)
463
+ actionpack (>= 3.1)
464
+ jquery-rails
465
+ railties (>= 3.1)
466
+ sass-rails
467
+ jquery-rails (4.6.0)
468
+ rails-dom-testing (>= 1, < 3)
469
+ railties (>= 4.2.0)
470
+ thor (>= 0.14, < 2.0)
471
+ jquery-ui-rails (6.0.1)
472
+ railties (>= 3.2.16)
473
+ json (2.6.3)
474
+ json-canonicalization (0.3.1)
475
+ json-ld (3.1.10)
476
+ htmlentities (~> 4.3)
477
+ json-canonicalization (~> 0.2)
478
+ link_header (~> 0.0, >= 0.0.8)
479
+ multi_json (~> 1.14)
480
+ rack (~> 2.0)
481
+ rdf (~> 3.1)
482
+ json-ld-preloaded (3.1.6)
483
+ json-ld (~> 3.1)
484
+ rdf (~> 3.1)
485
+ json-schema (4.1.1)
486
+ addressable (>= 2.8)
487
+ jwt (2.7.1)
488
+ kaminari (1.2.2)
489
+ activesupport (>= 4.1.0)
490
+ kaminari-actionview (= 1.2.2)
491
+ kaminari-activerecord (= 1.2.2)
492
+ kaminari-core (= 1.2.2)
493
+ kaminari-actionview (1.2.2)
494
+ actionview
495
+ kaminari-core (= 1.2.2)
496
+ kaminari-activerecord (1.2.2)
497
+ activerecord
498
+ kaminari-core (= 1.2.2)
499
+ kaminari-core (1.2.2)
500
+ kaminari_route_prefix (0.1.1)
501
+ kaminari (~> 1.0)
502
+ kramdown (2.4.0)
503
+ rexml
504
+ kramdown-parser-gfm (1.1.0)
505
+ kramdown (~> 2.0)
506
+ ld-patch (3.2.2)
507
+ ebnf (~> 2.3)
508
+ rdf (~> 3.2)
509
+ rdf-xsd (~> 3.2)
510
+ sparql (~> 3.2)
511
+ sxp (~> 1.2)
512
+ ldp (1.0.3)
513
+ deprecation
514
+ faraday
515
+ http_logger
516
+ json-ld
517
+ rdf (>= 1.1)
518
+ rdf-isomorphic
519
+ rdf-turtle
520
+ rdf-vocab (>= 0.8)
521
+ slop
522
+ ldpath (1.2.0)
523
+ nokogiri (~> 1.8)
524
+ parslet
525
+ rdf (~> 3.0)
526
+ rdf-vocab (~> 3.0)
527
+ legato (0.7.0)
528
+ multi_json
529
+ link_header (0.0.8)
530
+ linkeddata (3.1.6)
531
+ equivalent-xml (~> 0.6)
532
+ json-ld (~> 3.1, >= 3.1.10)
533
+ json-ld-preloaded (~> 3.1, >= 3.1.6)
534
+ ld-patch (~> 3.1, >= 3.1.3)
535
+ nokogiri (~> 1.12)
536
+ rdf (~> 3.1, >= 3.1.15)
537
+ rdf-aggregate-repo (~> 3.1)
538
+ rdf-isomorphic (~> 3.1, >= 3.1.1)
539
+ rdf-json (~> 3.1)
540
+ rdf-microdata (~> 3.1, >= 3.1.4)
541
+ rdf-n3 (~> 3.1, >= 3.1.2)
542
+ rdf-normalize (~> 0.4)
543
+ rdf-ordered-repo (~> 3.1, >= 3.1.1)
544
+ rdf-rdfa (~> 3.1, >= 3.1.3)
545
+ rdf-rdfxml (~> 3.1, >= 3.1.1)
546
+ rdf-reasoner (~> 0.7, >= 0.7.2)
547
+ rdf-tabular (~> 3.1, >= 3.1.1)
548
+ rdf-trig (~> 3.1, >= 3.1.2)
549
+ rdf-trix (~> 3.1, >= 3.1.1)
550
+ rdf-turtle (~> 3.1, >= 3.1.3)
551
+ rdf-vocab (~> 3.1, >= 3.1.14)
552
+ rdf-xsd (~> 3.1, >= 3.1.1)
553
+ shacl (~> 0.1, >= 0.1.1)
554
+ shex (~> 0.6, >= 0.6.4)
555
+ sparql (~> 3.1, >= 3.1.8)
556
+ sparql-client (~> 3.1, >= 3.1.2)
557
+ logger (1.6.0)
558
+ loofah (2.22.0)
559
+ crass (~> 1.0.2)
560
+ nokogiri (>= 1.12.0)
561
+ mail (2.8.1)
562
+ mini_mime (>= 0.1.1)
563
+ net-imap
564
+ net-pop
565
+ net-smtp
566
+ mailboxer (0.15.1)
567
+ carrierwave (>= 0.5.8)
568
+ rails (>= 5.0.0)
569
+ marcel (1.0.2)
570
+ matrix (0.4.2)
571
+ method_source (1.0.0)
572
+ mime-types (3.5.1)
573
+ mime-types-data (~> 3.2015)
574
+ mime-types-data (3.2023.1003)
575
+ mini_magick (4.12.0)
576
+ mini_mime (1.1.5)
577
+ mini_portile2 (2.8.5)
578
+ minitest (5.20.0)
579
+ multi_json (1.15.0)
580
+ multi_xml (0.6.0)
581
+ multipart-post (2.3.0)
582
+ nest (3.2.0)
583
+ redic
584
+ net-http-persistent (4.0.2)
585
+ connection_pool (~> 2.2)
586
+ net-imap (0.4.6)
587
+ date
588
+ net-protocol
589
+ net-pop (0.1.2)
590
+ net-protocol
591
+ net-protocol (0.2.2)
592
+ timeout
593
+ net-smtp (0.4.0)
594
+ net-protocol
595
+ newspaper_works_fixtures (0.3.1)
596
+ rails (~> 5.0)
597
+ nio4r (2.6.1)
598
+ noid (0.9.0)
599
+ noid-rails (3.0.3)
600
+ actionpack (>= 5.0.0, < 7)
601
+ noid (~> 0.9)
602
+ nokogiri (1.15.5)
603
+ mini_portile2 (~> 2.8.2)
604
+ racc (~> 1.4)
605
+ oauth (1.1.0)
606
+ oauth-tty (~> 1.0, >= 1.0.1)
607
+ snaky_hash (~> 2.0)
608
+ version_gem (~> 1.1)
609
+ oauth-tty (1.0.5)
610
+ version_gem (~> 1.1, >= 1.1.1)
611
+ oauth2 (1.4.11)
612
+ faraday (>= 0.17.3, < 3.0)
613
+ jwt (>= 1.0, < 3.0)
614
+ multi_json (~> 1.3)
615
+ multi_xml (~> 0.5)
616
+ rack (>= 1.2, < 4)
617
+ openseadragon (0.6.0)
618
+ rails (> 3.2.0)
619
+ orm_adapter (0.5.0)
620
+ os (1.1.4)
621
+ parallel (1.23.0)
622
+ parser (3.2.2.4)
623
+ ast (~> 2.4.1)
624
+ racc
625
+ parslet (2.0.0)
626
+ posix-spawn (0.3.15)
627
+ power_converter (0.1.2)
628
+ psych (3.3.4)
629
+ public_suffix (5.0.4)
630
+ puma (3.12.6)
631
+ qa (5.11.0)
632
+ activerecord-import
633
+ deprecation
634
+ faraday (< 3.0, != 2.0.0)
635
+ geocoder
636
+ ldpath
637
+ nokogiri (~> 1.6)
638
+ rails (>= 5.0, < 7.2)
639
+ rdf
640
+ racc (1.7.3)
641
+ rack (2.2.8)
642
+ rack-test (2.1.0)
643
+ rack (>= 1.3)
644
+ rails (5.2.8.1)
645
+ actioncable (= 5.2.8.1)
646
+ actionmailer (= 5.2.8.1)
647
+ actionpack (= 5.2.8.1)
648
+ actionview (= 5.2.8.1)
649
+ activejob (= 5.2.8.1)
650
+ activemodel (= 5.2.8.1)
651
+ activerecord (= 5.2.8.1)
652
+ activestorage (= 5.2.8.1)
653
+ activesupport (= 5.2.8.1)
654
+ bundler (>= 1.3.0)
655
+ railties (= 5.2.8.1)
656
+ sprockets-rails (>= 2.0.0)
657
+ rails-controller-testing (1.0.5)
658
+ actionpack (>= 5.0.1.rc1)
659
+ actionview (>= 5.0.1.rc1)
660
+ activesupport (>= 5.0.1.rc1)
661
+ rails-dom-testing (2.2.0)
662
+ activesupport (>= 5.0.0)
663
+ minitest
664
+ nokogiri (>= 1.6)
665
+ rails-html-sanitizer (1.6.0)
666
+ loofah (~> 2.21)
667
+ nokogiri (~> 1.14)
668
+ rails_autolink (1.1.8)
669
+ actionview (> 3.1)
670
+ activesupport (> 3.1)
671
+ railties (> 3.1)
672
+ railties (5.2.8.1)
673
+ actionpack (= 5.2.8.1)
674
+ activesupport (= 5.2.8.1)
675
+ method_source
676
+ rake (>= 0.8.7)
677
+ thor (>= 0.19.0, < 2.0)
678
+ rainbow (3.1.1)
679
+ rake (13.1.0)
680
+ rb-fsevent (0.11.2)
681
+ rb-inotify (0.10.1)
682
+ ffi (~> 1.0)
683
+ rdf (3.2.11)
684
+ link_header (~> 0.0, >= 0.0.8)
685
+ rdf-aggregate-repo (3.2.1)
686
+ rdf (~> 3.2)
687
+ rdf-isomorphic (3.2.1)
688
+ rdf (~> 3.2)
689
+ rdf-json (3.2.0)
690
+ rdf (~> 3.2)
691
+ rdf-microdata (3.2.1)
692
+ htmlentities (~> 4.3)
693
+ nokogiri (~> 1.13)
694
+ rdf (~> 3.2)
695
+ rdf-rdfa (~> 3.2)
696
+ rdf-xsd (~> 3.2)
697
+ rdf-n3 (3.2.1)
698
+ ebnf (~> 2.2)
699
+ rdf (~> 3.2)
700
+ sparql (~> 3.2)
701
+ sxp (~> 1.2)
702
+ rdf-normalize (0.6.1)
703
+ rdf (~> 3.2)
704
+ rdf-ordered-repo (3.2.1)
705
+ rdf (~> 3.2, >= 3.2.1)
706
+ rdf-rdfa (3.2.3)
707
+ haml (>= 5.2, < 7)
708
+ htmlentities (~> 4.3)
709
+ rdf (~> 3.2)
710
+ rdf-aggregate-repo (~> 3.2)
711
+ rdf-vocab (~> 3.2)
712
+ rdf-xsd (~> 3.2)
713
+ rdf-rdfxml (3.2.2)
714
+ builder (~> 3.2)
715
+ htmlentities (~> 4.3)
716
+ rdf (~> 3.2)
717
+ rdf-xsd (~> 3.2)
718
+ rdf-reasoner (0.8.0)
719
+ rdf (~> 3.2)
720
+ rdf-xsd (~> 3.2)
721
+ rdf-tabular (3.1.1)
722
+ addressable (~> 2.3)
723
+ bcp47 (~> 0.3, >= 0.3.3)
724
+ json-ld (~> 3.1)
725
+ rdf (~> 3.1)
726
+ rdf-vocab (~> 3.1)
727
+ rdf-xsd (~> 3.1)
728
+ rdf-trig (3.2.0)
729
+ ebnf (~> 2.2)
730
+ rdf (~> 3.2)
731
+ rdf-turtle (~> 3.2)
732
+ rdf-trix (3.2.0)
733
+ rdf (~> 3.2)
734
+ rdf-xsd (~> 3.2)
735
+ rdf-turtle (3.2.1)
736
+ ebnf (~> 2.3)
737
+ rdf (~> 3.2)
738
+ rdf-vocab (3.2.7)
739
+ rdf (~> 3.2, >= 3.2.4)
740
+ rdf-xsd (3.2.1)
741
+ rdf (~> 3.2)
742
+ rexml (~> 3.2)
743
+ redic (1.5.3)
744
+ hiredis
745
+ redis (4.8.1)
746
+ redis-namespace (1.11.0)
747
+ redis (>= 4)
748
+ redlock (1.3.2)
749
+ redis (>= 3.0.0, < 6.0)
750
+ reform (2.5.0)
751
+ disposable (>= 0.4.2, < 0.5.0)
752
+ representable (>= 2.4.0, < 3.1.0)
753
+ uber (< 0.2.0)
754
+ reform-rails (0.2.6)
755
+ activemodel (>= 5.0)
756
+ reform (>= 2.3.1, < 3.0.0)
757
+ regexp_parser (2.8.2)
758
+ representable (3.0.4)
759
+ declarative (< 0.1.0)
760
+ declarative-option (< 0.2.0)
761
+ uber (< 0.2.0)
762
+ request_store (1.5.1)
763
+ rack (>= 1.4)
764
+ responders (3.1.1)
765
+ actionpack (>= 5.2)
766
+ railties (>= 5.2)
767
+ retriable (3.1.2)
768
+ reverse_markdown (2.1.1)
769
+ nokogiri
770
+ rexml (3.2.6)
771
+ rsolr (2.5.0)
772
+ builder (>= 2.1.2)
773
+ faraday (>= 0.9, < 3, != 2.0.0)
774
+ rspec-activemodel-mocks (1.1.0)
775
+ activemodel (>= 3.0)
776
+ activesupport (>= 3.0)
777
+ rspec-mocks (>= 2.99, < 4.0)
778
+ rspec-core (3.12.2)
779
+ rspec-support (~> 3.12.0)
780
+ rspec-expectations (3.12.3)
781
+ diff-lcs (>= 1.2.0, < 2.0)
782
+ rspec-support (~> 3.12.0)
783
+ rspec-mocks (3.12.6)
784
+ diff-lcs (>= 1.2.0, < 2.0)
785
+ rspec-support (~> 3.12.0)
786
+ rspec-rails (5.1.2)
787
+ actionpack (>= 5.2)
788
+ activesupport (>= 5.2)
789
+ railties (>= 5.2)
790
+ rspec-core (~> 3.10)
791
+ rspec-expectations (~> 3.10)
792
+ rspec-mocks (~> 3.10)
793
+ rspec-support (~> 3.10)
794
+ rspec-support (3.12.1)
795
+ rubocop (1.28.2)
796
+ parallel (~> 1.10)
797
+ parser (>= 3.1.0.0)
798
+ rainbow (>= 2.2.2, < 4.0)
799
+ regexp_parser (>= 1.8, < 3.0)
800
+ rexml
801
+ rubocop-ast (>= 1.17.0, < 2.0)
802
+ ruby-progressbar (~> 1.7)
803
+ unicode-display_width (>= 1.4.0, < 3.0)
804
+ rubocop-ast (1.30.0)
805
+ parser (>= 3.2.1.0)
806
+ rubocop-performance (1.19.1)
807
+ rubocop (>= 1.7.0, < 2.0)
808
+ rubocop-ast (>= 0.4.0)
809
+ rubocop-rails (2.15.2)
810
+ activesupport (>= 4.2.0)
811
+ rack (>= 1.1)
812
+ rubocop (>= 1.7.0, < 2.0)
813
+ rubocop-rspec (2.11.1)
814
+ rubocop (~> 1.19)
815
+ ruby-box (1.15.0)
816
+ addressable
817
+ json
818
+ multipart-post
819
+ oauth2
820
+ ruby-progressbar (1.13.0)
821
+ ruby2_keywords (0.0.5)
822
+ rubyzip (2.3.2)
823
+ samvera-nesting_indexer (2.0.0)
824
+ dry-equalizer
825
+ sass (3.7.4)
826
+ sass-listen (~> 4.0.0)
827
+ sass-listen (4.0.0)
828
+ rb-fsevent (~> 0.9, >= 0.9.4)
829
+ rb-inotify (~> 0.9, >= 0.9.7)
830
+ sass-rails (5.1.0)
831
+ railties (>= 5.2.0)
832
+ sass (~> 3.1)
833
+ sprockets (>= 2.8, < 4.0)
834
+ sprockets-rails (>= 2.0, < 4.0)
835
+ tilt (>= 1.1, < 3)
836
+ sassc (2.4.0)
837
+ ffi (~> 1.9)
838
+ scanf (1.0.0)
839
+ select2-rails (3.5.11)
840
+ shacl (0.1.1)
841
+ json-ld (~> 3.1, >= 3.1.7)
842
+ rdf (~> 3.1, >= 3.1.8)
843
+ sparql (~> 3.1)
844
+ sxp (~> 1.1)
845
+ shex (0.6.4)
846
+ ebnf (~> 2.1, >= 2.2)
847
+ htmlentities (~> 4.3)
848
+ json-ld (~> 3.1)
849
+ json-ld-preloaded (~> 3.1)
850
+ rdf (~> 3.1)
851
+ rdf-xsd (~> 3.1)
852
+ sparql (~> 3.1)
853
+ sxp (~> 1.1)
854
+ shoulda-matchers (3.1.3)
855
+ activesupport (>= 4.0.0)
856
+ signet (0.18.0)
857
+ addressable (~> 2.8)
858
+ faraday (>= 0.17.5, < 3.a)
859
+ jwt (>= 1.5, < 3.0)
860
+ multi_json (~> 1.10)
861
+ simple_form (5.3.0)
862
+ actionpack (>= 5.2)
863
+ activemodel (>= 5.2)
864
+ simplecov (0.16.1)
865
+ docile (~> 1.1)
866
+ json (>= 1.8, < 3)
867
+ simplecov-html (~> 0.10.0)
868
+ simplecov-html (0.10.2)
869
+ slop (4.10.1)
870
+ snaky_hash (2.0.1)
871
+ hashie
872
+ version_gem (~> 1.1, >= 1.1.1)
873
+ solargraph (0.48.0)
874
+ backport (~> 1.2)
875
+ benchmark
876
+ bundler (>= 1.17.2)
877
+ diff-lcs (~> 1.4)
878
+ e2mmap
879
+ jaro_winkler (~> 1.5)
880
+ kramdown (~> 2.3)
881
+ kramdown-parser-gfm (~> 1.1)
882
+ parser (~> 3.0)
883
+ reverse_markdown (>= 1.0.5, < 3)
884
+ rubocop (>= 0.52)
885
+ thor (~> 1.0)
886
+ tilt (~> 2.0)
887
+ yard (~> 0.9, >= 0.9.24)
888
+ solr_wrapper (2.2.0)
889
+ faraday
890
+ retriable
891
+ ruby-progressbar
892
+ rubyzip
893
+ sparql (3.2.6)
894
+ builder (~> 3.2, >= 3.2.4)
895
+ ebnf (~> 2.3, >= 2.3.5)
896
+ logger (~> 1.5)
897
+ rdf (~> 3.2, >= 3.2.11)
898
+ rdf-aggregate-repo (~> 3.2, >= 3.2.1)
899
+ rdf-xsd (~> 3.2)
900
+ sparql-client (~> 3.2, >= 3.2.2)
901
+ sxp (~> 1.2, >= 1.2.4)
902
+ sparql-client (3.2.2)
903
+ net-http-persistent (~> 4.0, >= 4.0.2)
904
+ rdf (~> 3.2, >= 3.2.11)
905
+ sprockets (3.7.2)
906
+ concurrent-ruby (~> 1.0)
907
+ rack (> 1, < 3)
908
+ sprockets-es6 (0.9.2)
909
+ babel-source (>= 5.8.11)
910
+ babel-transpiler
911
+ sprockets (>= 3.0.0)
912
+ sprockets-rails (3.4.2)
913
+ actionpack (>= 5.2)
914
+ activesupport (>= 5.2)
915
+ sprockets (>= 3.0.0)
916
+ sqlite3 (1.6.9)
917
+ mini_portile2 (~> 2.8.0)
918
+ ssrf_filter (1.0.8)
919
+ sxp (1.2.4)
920
+ matrix (~> 0.4)
921
+ rdf (~> 3.2)
922
+ sync (0.5.0)
923
+ temple (0.10.3)
924
+ term-ansicolor (1.7.1)
925
+ tins (~> 1.0)
926
+ terminal-table (3.0.2)
927
+ unicode-display_width (>= 1.1.1, < 3)
928
+ thor (1.3.0)
929
+ thread_safe (0.3.6)
930
+ tilt (2.3.0)
931
+ timeout (0.4.1)
932
+ tins (1.32.1)
933
+ sync
934
+ tinymce-rails (5.10.9)
935
+ railties (>= 3.1.1)
936
+ turbolinks (5.2.1)
937
+ turbolinks-source (~> 5.2)
938
+ turbolinks-source (5.2.0)
939
+ twitter-typeahead-rails (0.11.1.pre.corejavascript)
940
+ actionpack (>= 3.1)
941
+ jquery-rails
942
+ railties (>= 3.1)
943
+ typhoeus (1.4.1)
944
+ ethon (>= 0.9.0)
945
+ tzinfo (1.2.11)
946
+ thread_safe (~> 0.1)
947
+ uber (0.1.0)
948
+ uglifier (4.2.0)
949
+ execjs (>= 0.3.0, < 3)
950
+ unicode-display_width (2.5.0)
951
+ unicode-types (1.9.0)
952
+ valkyrie (2.2.0)
953
+ activemodel
954
+ activesupport
955
+ disposable (~> 0.4.5)
956
+ draper
957
+ dry-struct
958
+ dry-types (~> 1.0)
959
+ faraday (< 1.0)
960
+ json
961
+ json-ld
962
+ railties
963
+ rdf (~> 3.0, >= 3.0.10)
964
+ rdf-vocab
965
+ reform (~> 2.2)
966
+ reform-rails
967
+ version_gem (1.1.3)
968
+ warden (1.2.9)
969
+ rack (>= 2.0.9)
970
+ web-console (3.7.0)
971
+ actionview (>= 5.0)
972
+ activemodel (>= 5.0)
973
+ bindex (>= 0.4.0)
974
+ railties (>= 5.0)
975
+ webrick (1.8.1)
976
+ websocket-driver (0.7.6)
977
+ websocket-extensions (>= 0.1.0)
978
+ websocket-extensions (0.1.5)
979
+ yard (0.9.34)
980
+ zeitwerk (2.6.12)
981
+
982
+ PLATFORMS
983
+ ruby
984
+
985
+ DEPENDENCIES
986
+ bixby
987
+ bootstrap-sass (~> 3.0)
988
+ byebug
989
+ coffee-rails (~> 4.2)
990
+ coveralls
991
+ database_cleaner (~> 1.3)
992
+ devise
993
+ devise-guests (~> 0.6)
994
+ engine_cart (~> 2.2)
995
+ factory_bot (~> 4.4)
996
+ fcrepo_wrapper
997
+ iiif_print!
998
+ jbuilder (~> 2.5)
999
+ jquery-rails
1000
+ json-canonicalization (= 0.3.1)
1001
+ newspaper_works_fixtures (~> 0.3, >= 0.3.1)
1002
+ puma (~> 3.11)
1003
+ rails (~> 5.2.8, >= 5.2.8.1)
1004
+ rails-controller-testing (~> 1)
1005
+ redis (= 4.8.1)
1006
+ rsolr (>= 1.0, < 3)
1007
+ rspec-activemodel-mocks
1008
+ rspec-rails
1009
+ sass-rails (~> 5.0)
1010
+ shoulda-matchers (~> 3.1)
1011
+ solargraph
1012
+ solr_wrapper (>= 0.3)
1013
+ sqlite3
1014
+ turbolinks (~> 5)
1015
+ twitter-typeahead-rails (= 0.11.1.pre.corejavascript)
1016
+ tzinfo-data
1017
+ uglifier (>= 1.3.0)
1018
+ web-console (>= 3.3.0)
1019
+ yard
1020
+
1021
+ RUBY VERSION
1022
+ ruby 2.7.6p219
1023
+
1024
+ BUNDLED WITH
1025
+ 2.3.20