uc3-dmp-id 0.1.56 → 0.1.57

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: 1081d13ad36b5435984d6fbb610511f4e99a7f6fb677d4c7aa4bd502776f1166
4
- data.tar.gz: 86e564c45241e14a6bcf23e7fb5015b4adf2e2c4ae8a939a0d9c38f22ae58a51
3
+ metadata.gz: 141e0ecd0482b349f2b98f2d41029623f42c755324bb6ab0347c1703d224393f
4
+ data.tar.gz: 8872a059855cb558f884a2b8542c8dece13aaad36c7b73679d90f7e129e6667b
5
5
  SHA512:
6
- metadata.gz: f8ae4658ca506e73ae049c901ad1bbdb23817369be5571514bc8cc3bc75c7947d9a62863e565b9bc2085e36f016ba93469d2c5c502bfa65ee70c38625aca159a
7
- data.tar.gz: 25e3cfff2baea5a4f20ddf23a6dcd075f959300fa4b973887f6a99c60b77aefd798b522766b99a13d598ac19a1b626d377ee463906a82752a7f2a2cfd8d9330d
6
+ metadata.gz: 26f0b387fcc3417459c6a0b2363f6a6aa1ab8bade5690679ce60e2ecb8a010ec5e2bcf34d442f4fe93f5e0206cacef679842feea67b76bb9d0cbd54a14a57bf1
7
+ data.tar.gz: 143a749ad8e6f425360b5b8f8aa55c58be4a046a1b858360bdb9f6154bf75b891956436a33ecc045324f1a4abd64ac9d450c7e7b1616f9a3dc7f32e314bbddf9
@@ -135,9 +135,9 @@ module Uc3DmpId
135
135
  def _by_owner(owner:, client: nil, logger: nil)
136
136
  orcid_regex = /^([0-9A-Z]{4}-){3}[0-9A-Z]{4}$/
137
137
  email_regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
138
- email = owner.trim unless (owner.to_s.trim.gsub('%40', '@') =~ email_regex).nil?
138
+ email = owner.strip unless (owner.to_s.strip.gsub('%40', '@') =~ email_regex).nil?
139
139
 
140
- if !(owner.to_s.trim =~ orcid_regex).nil?
140
+ if !(owner.to_s.strip =~ orcid_regex).nil?
141
141
  args = {
142
142
  filter_expression: 'contains(:people_ids, people) AND :sk = sk',
143
143
  expression_attribute_values: {
@@ -165,7 +165,7 @@ module Uc3DmpId
165
165
  # Fetch the DMP IDs for the specified organization/institution
166
166
  def _by_org(org:, client: nil, logger: nil)
167
167
  regex = /^[a-zA-Z0-9]+$/
168
- ror = org.trim() unless (org.to_s =~ regex).nil?
168
+ ror = org.strip unless (org.to_s =~ regex).nil?
169
169
 
170
170
  args = {
171
171
  filter_expression: 'contains(:affiliation_ids, affiliation_ids) AND :sk = sk',
@@ -185,7 +185,7 @@ module Uc3DmpId
185
185
  # Fetch the DMP IDs for the specified funder
186
186
  def _by_funder(funder:, client: nil, logger: nil)
187
187
  regex = /^[a-zA-Z0-9]+$/
188
- ror = funder.trim() unless (funder.to_s =~ regex).nil?
188
+ ror = funder.strip unless (funder.to_s =~ regex).nil?
189
189
 
190
190
  args = {
191
191
  filter_expression: 'contains(:funder_ids, funder_ids) AND :sk = sk',
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Uc3DmpId
4
- VERSION = '0.1.56'
4
+ VERSION = '0.1.57'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uc3-dmp-id
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.56
4
+ version: 0.1.57
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Riley