orcid_client 0.9.5 → 0.9.6
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/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/orcid_client/api.rb +1 -1
- data/lib/orcid_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1bbdf8d446414570ce790541a828928b293809228e29c99bd718f00c8c9579a7
|
|
4
|
+
data.tar.gz: 6aac2bd78fc890f7f5e5fb9bd0e8e3accecabdcf280bbfc4229865615d44c195
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3a2a8be09010c7e22f0bb48bc6bcbab495ceed815e261a86e3b96debe24d45ba6b66627e632ff99595f378f94a83ff6599180ba71615de194509f380600dd32
|
|
7
|
+
data.tar.gz: a5699d857d001c9d2e5f840e8d00084ef1b21d859fb5f384251f66058a768ca8fb91ff21c043a87b4091881340e9bc001249f7b073c7955b9fd667f150518b12
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.9.5.1](https://github.com/datacite/orcid_client/tree/0.9.5.1) (2021-09-29)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.5...0.9.5.1)
|
|
6
|
+
|
|
3
7
|
## [0.9.5](https://github.com/datacite/orcid_client/tree/0.9.5) (2021-09-29)
|
|
4
8
|
|
|
5
9
|
[Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.4...0.9.5)
|
data/Gemfile.lock
CHANGED
data/lib/orcid_client/api.rb
CHANGED
|
@@ -29,7 +29,7 @@ module OrcidClient
|
|
|
29
29
|
return OpenStruct.new(body: { "errors" => [{ "title" => "ORCID access token missing" }] }) unless orcid_token.present?
|
|
30
30
|
return OpenStruct.new(body: { "errors" => [{ "title" => "Put code missing" }] }) unless put_code.present?
|
|
31
31
|
|
|
32
|
-
visibility = nil
|
|
32
|
+
self.visibility = nil
|
|
33
33
|
orcid_api_url = options[:sandbox] ? 'https://api.sandbox.orcid.org' : 'https://api.orcid.org'
|
|
34
34
|
|
|
35
35
|
url = "#{orcid_api_url}/v#{API_VERSION}/#{orcid}/work/#{put_code}"
|
data/lib/orcid_client/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: orcid_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martin Fenner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|