dor-workflow-client 3.19.0 → 3.23.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 +35 -0
- data/.github/pull_request_template.md +12 -0
- data/README.md +2 -2
- data/dor-workflow-client.gemspec +2 -2
- data/lib/dor/workflow/client.rb +1 -1
- data/lib/dor/workflow/client/lifecycle_routes.rb +76 -12
- data/lib/dor/workflow/client/queues.rb +72 -49
- data/lib/dor/workflow/client/status.rb +35 -19
- data/lib/dor/workflow/client/version.rb +1 -1
- data/lib/dor/workflow/client/workflow_routes.rb +10 -3
- data/lib/dor/workflow/response/process.rb +4 -0
- data/lib/dor/workflow/response/workflow.rb +4 -0
- data/spec/models/response/process_spec.rb +4 -0
- data/spec/models/response/workflow_spec.rb +4 -0
- data/spec/workflow/client/lifecycle_routes_spec.rb +151 -24
- data/spec/workflow/client/status_spec.rb +19 -6
- data/spec/workflow/client_spec.rb +74 -52
- metadata +9 -8
- data/.travis.yml +0 -20
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
|
+
version: 3.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Willy Mene
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-10-08 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -153,16 +153,16 @@ dependencies:
|
|
153
153
|
name: simplecov
|
154
154
|
requirement: !ruby/object:Gem::Requirement
|
155
155
|
requirements:
|
156
|
-
- - "
|
156
|
+
- - "~>"
|
157
157
|
- !ruby/object:Gem::Version
|
158
|
-
version:
|
158
|
+
version: 0.17.0
|
159
159
|
type: :development
|
160
160
|
prerelease: false
|
161
161
|
version_requirements: !ruby/object:Gem::Requirement
|
162
162
|
requirements:
|
163
|
-
- - "
|
163
|
+
- - "~>"
|
164
164
|
- !ruby/object:Gem::Version
|
165
|
-
version:
|
165
|
+
version: 0.17.0
|
166
166
|
- !ruby/object:Gem::Dependency
|
167
167
|
name: webmock
|
168
168
|
requirement: !ruby/object:Gem::Requirement
|
@@ -198,11 +198,12 @@ executables: []
|
|
198
198
|
extensions: []
|
199
199
|
extra_rdoc_files: []
|
200
200
|
files:
|
201
|
+
- ".circleci/config.yml"
|
202
|
+
- ".github/pull_request_template.md"
|
201
203
|
- ".gitignore"
|
202
204
|
- ".rspec"
|
203
205
|
- ".rubocop.yml"
|
204
206
|
- ".rubocop_todo.yml"
|
205
|
-
- ".travis.yml"
|
206
207
|
- ".yardopts"
|
207
208
|
- Gemfile
|
208
209
|
- LICENSE.txt
|
@@ -255,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
255
256
|
- !ruby/object:Gem::Version
|
256
257
|
version: '0'
|
257
258
|
requirements: []
|
258
|
-
rubygems_version: 3.
|
259
|
+
rubygems_version: 3.1.2
|
259
260
|
signing_key:
|
260
261
|
specification_version: 4
|
261
262
|
summary: Provides convenience methods to work with the DOR Workflow Service
|
data/.travis.yml
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
cache: bundler
|
3
|
-
|
4
|
-
rvm:
|
5
|
-
- 2.5.3
|
6
|
-
|
7
|
-
env:
|
8
|
-
- "RAILS_VERSION=5.2.3"
|
9
|
-
- "RAILS_VERSION=6.0.0"
|
10
|
-
|
11
|
-
before_script:
|
12
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
13
|
-
- chmod +x ./cc-test-reporter
|
14
|
-
- ./cc-test-reporter before-build
|
15
|
-
|
16
|
-
after_script:
|
17
|
-
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
18
|
-
|
19
|
-
notifications:
|
20
|
-
email: false
|