dor-workflow-client 3.4.1 → 3.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6ddd265bbe6661a2e883ef2e008fa5f3b39988dd11eea7453961fed5b1a8351f
4
- data.tar.gz: b0c878f522e039bea501f2bfd1d15d5fc60a420da028772a9b03860a2f54c6e6
3
+ metadata.gz: 8eac84de233115bd296697bf85c88d1d6ea530d563bec65e5730ee8d3fb82826
4
+ data.tar.gz: 3e5b8036c01e95bc9d6ae2abc6a68e0bc3368ad3a36faf54ecb47f5a6b412fec
5
5
  SHA512:
6
- metadata.gz: ad0f0cf4668976ff5b3e64795b4f5739bafdde4aaea4b8d5c364352f942890c89b959f537e38252709264a24752e51625d7dbc99bb04d4405c72acb8c0d015ce
7
- data.tar.gz: 89f951b226d774fe60fde3b1b9582b3c7ba075679decc18085ce00566f90cd9d40b2a2950f2d06abc73501f0e4f3367e249f21fc172354c17ebac70bcfdb6708
6
+ metadata.gz: 7a1b57fe59f764112f31295aba8ed695a0c81da63d78d7eb3c5558370694ace019aeae586f621e5f0ec48f33bef2f65da87e35b6cda5be11e3a1c78308a95739
7
+ data.tar.gz: 599edcdf8f87d328a618aa46c65b5a37393e58a827a8131ebe0e58c39806cbc6f4fa4fc500ecc6e44c370d00cba93659841332b3daef2ac8a3e68944761bca0d
@@ -3,7 +3,7 @@
3
3
  module Dor
4
4
  module Workflow
5
5
  class Client
6
- VERSION = '3.4.1'
6
+ VERSION = '3.4.2'
7
7
  end
8
8
  end
9
9
  end
@@ -6,9 +6,13 @@ require 'nokogiri'
6
6
  require 'zeitwerk'
7
7
 
8
8
  loader = Zeitwerk::Loader.new
9
- root_file = File.absolute_path("#{__FILE__}/../../..")
10
- loader.inflector = Zeitwerk::GemInflector.new(root_file)
11
- loader.push_dir(root_file)
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dor-workflow-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.1
4
+ version: 3.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Willy Mene