dor-workflow-client 3.4.1 → 3.4.2
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/lib/dor/workflow/client/version.rb +1 -1
- data/lib/dor/workflow/client.rb +7 -3
- 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: 8eac84de233115bd296697bf85c88d1d6ea530d563bec65e5730ee8d3fb82826
|
4
|
+
data.tar.gz: 3e5b8036c01e95bc9d6ae2abc6a68e0bc3368ad3a36faf54ecb47f5a6b412fec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a1b57fe59f764112f31295aba8ed695a0c81da63d78d7eb3c5558370694ace019aeae586f621e5f0ec48f33bef2f65da87e35b6cda5be11e3a1c78308a95739
|
7
|
+
data.tar.gz: 599edcdf8f87d328a618aa46c65b5a37393e58a827a8131ebe0e58c39806cbc6f4fa4fc500ecc6e44c370d00cba93659841332b3daef2ac8a3e68944761bca0d
|
data/lib/dor/workflow/client.rb
CHANGED
@@ -6,9 +6,13 @@ require 'nokogiri'
|
|
6
6
|
require 'zeitwerk'
|
7
7
|
|
8
8
|
loader = Zeitwerk::Loader.new
|
9
|
-
|
10
|
-
|
11
|
-
loader.
|
9
|
+
# Zeitwerk::GemInflector wants to be instantiated with the main .rb entrypoint
|
10
|
+
# into a gem, which is this file.
|
11
|
+
loader.inflector = Zeitwerk::GemInflector.new(__FILE__)
|
12
|
+
# `#push_dir`, on the other hand, wants to be pointed at the dir that holds your
|
13
|
+
# root namespace directory, which for dor-workflow-client is the `lib/`
|
14
|
+
# directory. Our root namespace is `Dor::` which lives in `lib/dor/`
|
15
|
+
loader.push_dir(File.absolute_path("#{__FILE__}/../../.."))
|
12
16
|
loader.setup
|
13
17
|
|
14
18
|
module Dor
|