assembly-objectfile 2.2.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.circleci/config.yml +1 -1
- data/.rubocop.yml +171 -4
- data/Gemfile.lock +42 -45
- data/Rakefile +2 -8
- data/bin/console +8 -2
- data/lib/assembly/object_file/version.rb +1 -1
- data/lib/assembly-objectfile.rb +5 -1
- data/spec/assembly/object_file_spec.rb +22 -0
- data/spec/fixtures/input/arc_metadata.tif.xml +2153 -0
- data/spec/fixtures/input/index_map.geojson +9 -0
- data/spec/fixtures/input/tif_overview.tif.ovr +0 -0
- metadata +5 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "FeatureCollection",
|
|
3
|
+
"name": "index_map",
|
|
4
|
+
"xy_coordinate_resolution": 1e-07,
|
|
5
|
+
"features": [
|
|
6
|
+
{ "type": "Feature", "properties": { "Id": 0, "label": "SHEET1", "call_short": "G4364 .C629 1927 .S3", "call_num": "G4364 .C629 1927 .S3 SHEET1", "recId": "hb524xr6645", "websiteUrl": "https://purl.stanford.edu/hb524xr6645", "title": "Clearwater, Los Angeles Co., Cal., Sept. 1927, including Hynes.", "ckey": 2725322, "available": true, "iiifUrl": "https://purl.stanford.edu/hb524xr6645/iiif/manifest" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.1686541, 33.8973167 ], [ -118.1687151, 33.8893137 ], [ -118.1646317, 33.8893078 ], [ -118.1646202, 33.8973109 ], [ -118.1686541, 33.8973167 ] ] ] } },
|
|
7
|
+
{ "type": "Feature", "properties": { "Id": 0, "label": "SHEET2", "call_short": "G4364 .C629 1927 .S3", "call_num": "G4364 .C629 1927 .S3 SHEET2", "recId": "xx515cz6275", "websiteUrl": "https://purl.stanford.edu/xx515cz6275", "title": "Clearwater, Los Angeles Co., Cal., Sept. 1927, including Hynes.", "ckey": 2725322, "available": true, "iiifUrl": "https://purl.stanford.edu/xx515cz6275/iiif/manifest" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -118.1687151, 33.8893137 ], [ -118.1686769, 33.8830951 ], [ -118.164995, 33.8831178 ], [ -118.1650333, 33.8893364 ], [ -118.1687151, 33.8893137 ] ] ] } }
|
|
8
|
+
]
|
|
9
|
+
}
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: assembly-objectfile
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Mangiafico
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
- Tony Calavano
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2026-
|
|
13
|
+
date: 2026-08-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: activesupport
|
|
@@ -195,7 +195,9 @@ files:
|
|
|
195
195
|
- spec/assembly/object_file_spec.rb
|
|
196
196
|
- spec/fixtures/empty.txt
|
|
197
197
|
- spec/fixtures/input/.empty
|
|
198
|
+
- spec/fixtures/input/arc_metadata.tif.xml
|
|
198
199
|
- spec/fixtures/input/file_with_no_exif.xml
|
|
200
|
+
- spec/fixtures/input/index_map.geojson
|
|
199
201
|
- spec/fixtures/input/res1_image1.tif
|
|
200
202
|
- spec/fixtures/input/res1_textfile.txt
|
|
201
203
|
- spec/fixtures/input/res1_transcript.pdf
|
|
@@ -206,6 +208,7 @@ files:
|
|
|
206
208
|
- spec/fixtures/input/test.tif
|
|
207
209
|
- spec/fixtures/input/test.vtt
|
|
208
210
|
- spec/fixtures/input/test_no_color_profile.tif
|
|
211
|
+
- spec/fixtures/input/tif_overview.tif.ovr
|
|
209
212
|
- spec/spec_helper.rb
|
|
210
213
|
homepage: https://github.com/sul-dlss/assembly-objectfile
|
|
211
214
|
licenses:
|