sul_orcid_client 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +353 -13
- data/Gemfile +2 -2
- data/Gemfile.lock +115 -112
- data/README.md +1 -2
- data/Rakefile +3 -3
- data/lib/sul_orcid_client/cocina_support.rb +9 -5
- data/lib/sul_orcid_client/contributor_mapper.rb +28 -25
- data/lib/sul_orcid_client/version.rb +1 -1
- data/lib/sul_orcid_client/work_mapper.rb +66 -59
- data/lib/sul_orcid_client.rb +44 -32
- data/sul_orcid_client.gemspec +32 -28
- metadata +61 -16
- data/.rubocop/custom.yml +0 -85
- data/.standard.yml +0 -1
data/.rubocop/custom.yml
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
AllCops:
|
2
|
-
TargetRubyVersion: 3.1
|
3
|
-
DisplayCopNames: true
|
4
|
-
SuggestExtensions: false
|
5
|
-
Exclude:
|
6
|
-
- bin/**
|
7
|
-
- vendor/bundle/**/*
|
8
|
-
|
9
|
-
# Per team developer playbook
|
10
|
-
RSpec/MultipleMemoizedHelpers:
|
11
|
-
Enabled: false
|
12
|
-
|
13
|
-
RSpec/BeEq: # new in 2.9.0
|
14
|
-
Enabled: true
|
15
|
-
RSpec/BeNil: # new in 2.9.0
|
16
|
-
Enabled: true
|
17
|
-
RSpec/ChangeByZero: # new in 2.11
|
18
|
-
Enabled: true
|
19
|
-
RSpec/ClassCheck: # new in 2.13
|
20
|
-
Enabled: true
|
21
|
-
RSpec/ExcessiveDocstringSpacing: # new in 2.5
|
22
|
-
Enabled: true
|
23
|
-
RSpec/IdenticalEqualityAssertion: # new in 2.4
|
24
|
-
Enabled: true
|
25
|
-
RSpec/NoExpectationExample: # new in 2.13
|
26
|
-
Enabled: true
|
27
|
-
RSpec/SortMetadata: # new in 2.14
|
28
|
-
Enabled: true
|
29
|
-
RSpec/SubjectDeclaration: # new in 2.5
|
30
|
-
Enabled: true
|
31
|
-
RSpec/VerifiedDoubleReference: # new in 2.10.0
|
32
|
-
Enabled: true
|
33
|
-
Capybara/NegationMatcher: # new in 2.14
|
34
|
-
Enabled: true
|
35
|
-
Capybara/SpecificActions: # new in 2.14
|
36
|
-
Enabled: true
|
37
|
-
Capybara/SpecificFinders: # new in 2.13
|
38
|
-
Enabled: true
|
39
|
-
Capybara/SpecificMatcher: # new in 2.12
|
40
|
-
Enabled: true
|
41
|
-
FactoryBot/ConsistentParenthesesStyle: # new in 2.14
|
42
|
-
Enabled: true
|
43
|
-
FactoryBot/SyntaxMethods: # new in 2.7
|
44
|
-
Enabled: true
|
45
|
-
RSpec/Rails/AvoidSetupHook: # new in 2.4
|
46
|
-
Enabled: true
|
47
|
-
RSpec/Rails/HaveHttpStatus: # new in 2.12
|
48
|
-
Enabled: true
|
49
|
-
RSpec/Rails/InferredSpecType: # new in 2.14
|
50
|
-
Enabled: true
|
51
|
-
|
52
|
-
RSpec/MultipleExpectations:
|
53
|
-
Enabled: false
|
54
|
-
RSpec/ExampleLength:
|
55
|
-
Enabled: false
|
56
|
-
Capybara/MatchStyle: # new in 2.17
|
57
|
-
Enabled: true
|
58
|
-
FactoryBot/AssociationStyle: # new in 2.23
|
59
|
-
Enabled: true
|
60
|
-
FactoryBot/FactoryAssociationWithStrategy: # new in 2.23
|
61
|
-
Enabled: true
|
62
|
-
FactoryBot/FactoryNameStyle: # new in 2.16
|
63
|
-
Enabled: true
|
64
|
-
FactoryBot/RedundantFactoryOption: # new in 2.23
|
65
|
-
Enabled: true
|
66
|
-
RSpec/BeEmpty: # new in 2.20
|
67
|
-
Enabled: true
|
68
|
-
RSpec/ContainExactly: # new in 2.19
|
69
|
-
Enabled: true
|
70
|
-
RSpec/DuplicatedMetadata: # new in 2.16
|
71
|
-
Enabled: true
|
72
|
-
RSpec/IndexedLet: # new in 2.20
|
73
|
-
Enabled: true
|
74
|
-
RSpec/MatchArray: # new in 2.19
|
75
|
-
Enabled: true
|
76
|
-
RSpec/PendingWithoutReason: # new in 2.16
|
77
|
-
Enabled: true
|
78
|
-
RSpec/RedundantAround: # new in 2.19
|
79
|
-
Enabled: true
|
80
|
-
RSpec/SkipBlockInsideExample: # new in 2.19
|
81
|
-
Enabled: true
|
82
|
-
RSpec/Rails/MinitestAssertions: # new in 2.17
|
83
|
-
Enabled: true
|
84
|
-
RSpec/Rails/TravelAround: # new in 2.19
|
85
|
-
Enabled: true
|
data/.standard.yml
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
parallel: true
|