iiif_print 3.0.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/lib/iiif_print/persistence_layer/valkyrie_adapter.rb +3 -1
- data/lib/iiif_print/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1751ae8fa40b3eea80a42e190c97e2edb777559907b47e1e3b781f82db383137
|
4
|
+
data.tar.gz: 59f9138ca7c4364eaaf886d0856ed8ac00c21a6a58d5ab6193f924681cd85add
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '061086f0d3283d48aa2c5b518766cc05d88000174dc555936cccf0a5c345abdc27a648055e1865ccf3acf791789ce767962176e9711d96101f33b4ef02294b53'
|
7
|
+
data.tar.gz: 8c876a9db0b6bd4024aebcec8118f5f101d1208d3a13388d608202ace3183b0e6c2fc7fdaef0870bb95a46623aeee151515cc0f6272f4981d35f2d18c98228af
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /app/samvera/hyrax-webapp
|
3
3
|
specs:
|
4
|
-
iiif_print (3.0.
|
4
|
+
iiif_print (3.0.3)
|
5
5
|
blacklight_iiif_search (>= 1.0, < 3.0)
|
6
6
|
derivative-rodeo (~> 0.5)
|
7
7
|
hyrax (>= 2.5, < 6)
|
@@ -87,8 +87,8 @@ GEM
|
|
87
87
|
awesome_nested_set (3.8.0)
|
88
88
|
activerecord (>= 4.0.0, < 8.1)
|
89
89
|
aws-eventstream (1.3.0)
|
90
|
-
aws-partitions (1.
|
91
|
-
aws-sdk-core (3.217.
|
90
|
+
aws-partitions (1.1044.0)
|
91
|
+
aws-sdk-core (3.217.1)
|
92
92
|
aws-eventstream (~> 1, >= 1.3.0)
|
93
93
|
aws-partitions (~> 1, >= 1.992.0)
|
94
94
|
aws-sigv4 (~> 1.9)
|
@@ -86,7 +86,8 @@ module IiifPrint
|
|
86
86
|
# Building a custom query to find these child works directly via the attribute would be more efficient.
|
87
87
|
# However, it would require more effort for a lesser-used feature, and would not allow for the fallback
|
88
88
|
# of finding child works by title.
|
89
|
-
|
89
|
+
# rubocop:disable Lint/UnusedMethodArgument
|
90
|
+
def self.destroy_children_split_from(file_set:, work:, model:, user:)
|
90
91
|
all_child_works = Hyrax.custom_queries.find_child_works(resource: work)
|
91
92
|
return if all_child_works.blank?
|
92
93
|
# look first for children by the file set id they were split from
|
@@ -103,6 +104,7 @@ module IiifPrint
|
|
103
104
|
end
|
104
105
|
true
|
105
106
|
end
|
107
|
+
# rubocop:enable Lint/UnusedMethodArgument
|
106
108
|
|
107
109
|
def self.pdf?(file_set)
|
108
110
|
file_set.original_file&.pdf?
|
data/lib/iiif_print/version.rb
CHANGED