orcid_client 0.8 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (152) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/build.yml +39 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/release.yml +48 -0
  5. data/CHANGELOG.md +169 -0
  6. data/Gemfile.lock +135 -117
  7. data/README.md +6 -6
  8. data/lib/orcid_client/api.rb +2 -1
  9. data/lib/orcid_client/base.rb +1 -1
  10. data/lib/orcid_client/external_identifier.rb +1 -1
  11. data/lib/orcid_client/version.rb +1 -1
  12. data/lib/orcid_client/work.rb +8 -5
  13. data/orcid_client.gemspec +3 -4
  14. data/resources/README.md +48 -43
  15. data/resources/common_3.0/common-3.0.xsd +998 -0
  16. data/resources/common_3.0/samples/common-3.0.xml +8 -0
  17. data/resources/common_3.0/samples/common-3.0_external-identifier.xml +11 -0
  18. data/resources/notification_3.0/README.md +130 -0
  19. data/resources/notification_3.0/images/notification-intro.jpg +0 -0
  20. data/resources/notification_3.0/images/notification-subject.jpg +0 -0
  21. data/resources/notification_3.0/notification-custom-3.0.xsd +38 -0
  22. data/resources/notification_3.0/notification-permission-3.0.xsd +134 -0
  23. data/resources/notification_3.0/samples/notification-custom-3.0.xml +27 -0
  24. data/resources/notification_3.0/samples/notification-permission-3.0.xml +58 -0
  25. data/resources/record_3.0/README.md +408 -0
  26. data/resources/record_3.0/activities-3.0.xsd +456 -0
  27. data/resources/record_3.0/address-3.0.xsd +73 -0
  28. data/resources/record_3.0/bulk-3.0.xsd +57 -0
  29. data/resources/record_3.0/distinction-3.0.xsd +51 -0
  30. data/resources/record_3.0/education-3.0.xsd +51 -0
  31. data/resources/record_3.0/email-3.0.xsd +76 -0
  32. data/resources/record_3.0/employment-3.0.xsd +51 -0
  33. data/resources/record_3.0/error-3.0.xsd +84 -0
  34. data/resources/record_3.0/expanded-search-3.0.xsd +114 -0
  35. data/resources/record_3.0/funding-3.0.xsd +204 -0
  36. data/resources/record_3.0/history-3.0.xsd +185 -0
  37. data/resources/record_3.0/invited-position-3.0.xsd +50 -0
  38. data/resources/record_3.0/keyword-3.0.xsd +72 -0
  39. data/resources/record_3.0/membership-3.0.xsd +51 -0
  40. data/resources/record_3.0/other-name-3.0.xsd +78 -0
  41. data/resources/record_3.0/peer-review-3.0.xsd +263 -0
  42. data/resources/record_3.0/person-3.0.xsd +85 -0
  43. data/resources/record_3.0/person-external-identifier-3.0.xsd +63 -0
  44. data/resources/record_3.0/personal-details-3.0.xsd +162 -0
  45. data/resources/record_3.0/preferences-3.0.xsd +50 -0
  46. data/resources/record_3.0/qualification-3.0.xsd +50 -0
  47. data/resources/record_3.0/record-3.0.xsd +91 -0
  48. data/resources/record_3.0/research-resource-3.0.xsd +144 -0
  49. data/resources/record_3.0/researcher-url-3.0.xsd +86 -0
  50. data/resources/record_3.0/samples/read_samples/activities-3.0.xml +742 -0
  51. data/resources/record_3.0/samples/read_samples/address-3.0.xml +16 -0
  52. data/resources/record_3.0/samples/read_samples/addresses-3.0.xml +32 -0
  53. data/resources/record_3.0/samples/read_samples/biography-3.0.xml +10 -0
  54. data/resources/record_3.0/samples/read_samples/bulk-work-err.xml +45 -0
  55. data/resources/record_3.0/samples/read_samples/credit-name-3.0.xml +5 -0
  56. data/resources/record_3.0/samples/read_samples/distinction-3.0.xml +55 -0
  57. data/resources/record_3.0/samples/read_samples/distinctions-3.0.xml +106 -0
  58. data/resources/record_3.0/samples/read_samples/education-3.0.xml +55 -0
  59. data/resources/record_3.0/samples/read_samples/education-full-3.0.xml +55 -0
  60. data/resources/record_3.0/samples/read_samples/educations-3.0.xml +118 -0
  61. data/resources/record_3.0/samples/read_samples/email-3.0.xml +16 -0
  62. data/resources/record_3.0/samples/read_samples/emails-3.0.xml +31 -0
  63. data/resources/record_3.0/samples/read_samples/employment-3.0.xml +55 -0
  64. data/resources/record_3.0/samples/read_samples/employment-full-3.0.xml +55 -0
  65. data/resources/record_3.0/samples/read_samples/employments-3.0.xml +108 -0
  66. data/resources/record_3.0/samples/read_samples/error-3.0.xml +8 -0
  67. data/resources/record_3.0/samples/read_samples/external-identifier-3.0.xml +21 -0
  68. data/resources/record_3.0/samples/read_samples/external-identifiers-3.0.xml +38 -0
  69. data/resources/record_3.0/samples/read_samples/full-record-3.0.json +2332 -0
  70. data/resources/record_3.0/samples/read_samples/funding-3.0.xml +75 -0
  71. data/resources/record_3.0/samples/read_samples/funding-full-3.0.xml +75 -0
  72. data/resources/record_3.0/samples/read_samples/fundings-3.0.xml +139 -0
  73. data/resources/record_3.0/samples/read_samples/history-3.0.xml +22 -0
  74. data/resources/record_3.0/samples/read_samples/invited-position-3.0.xml +55 -0
  75. data/resources/record_3.0/samples/read_samples/invited-positions-3.0.xml +106 -0
  76. data/resources/record_3.0/samples/read_samples/keyword-3.0.xml +18 -0
  77. data/resources/record_3.0/samples/read_samples/keywords-3.0.xml +34 -0
  78. data/resources/record_3.0/samples/read_samples/membership-3.0.xml +55 -0
  79. data/resources/record_3.0/samples/read_samples/memberships-3.0.xml +106 -0
  80. data/resources/record_3.0/samples/read_samples/name-3.0.xml +12 -0
  81. data/resources/record_3.0/samples/read_samples/other-name-3.0.xml +16 -0
  82. data/resources/record_3.0/samples/read_samples/other-names-3.0.xml +31 -0
  83. data/resources/record_3.0/samples/read_samples/peer-review-3.0.xml +59 -0
  84. data/resources/record_3.0/samples/read_samples/peer-review-full-3.0.xml +59 -0
  85. data/resources/record_3.0/samples/read_samples/peer-reviews-3.0.xml +76 -0
  86. data/resources/record_3.0/samples/read_samples/person-3.0.xml +122 -0
  87. data/resources/record_3.0/samples/read_samples/personal-details-3.0.xml +47 -0
  88. data/resources/record_3.0/samples/read_samples/preferences-3.0.xml +4 -0
  89. data/resources/record_3.0/samples/read_samples/qualification-3.0.xml +55 -0
  90. data/resources/record_3.0/samples/read_samples/qualifications-3.0.xml +106 -0
  91. data/resources/record_3.0/samples/read_samples/record-3.0.xml +770 -0
  92. data/resources/record_3.0/samples/read_samples/research-resource-3.0.xml +138 -0
  93. data/resources/record_3.0/samples/read_samples/research-resources-3.0.xml +143 -0
  94. data/resources/record_3.0/samples/read_samples/researcher-url-3.0.xml +19 -0
  95. data/resources/record_3.0/samples/read_samples/researcher-urls-3.0.xml +21 -0
  96. data/resources/record_3.0/samples/read_samples/search-3.0.xml +14 -0
  97. data/resources/record_3.0/samples/read_samples/service-3.0.xml +55 -0
  98. data/resources/record_3.0/samples/read_samples/services-3.0.xml +106 -0
  99. data/resources/record_3.0/samples/read_samples/work-3.0.xml +65 -0
  100. data/resources/record_3.0/samples/read_samples/work-full-3.0.xml +65 -0
  101. data/resources/record_3.0/samples/read_samples/works-3.0.xml +148 -0
  102. data/resources/record_3.0/samples/write_samples/address-3.0.xml +6 -0
  103. data/resources/record_3.0/samples/write_samples/bulk-work-3.0.json +53 -0
  104. data/resources/record_3.0/samples/write_samples/bulk-work-3.0.xml +47 -0
  105. data/resources/record_3.0/samples/write_samples/distinction-3.0.xml +46 -0
  106. data/resources/record_3.0/samples/write_samples/education-3.0.xml +45 -0
  107. data/resources/record_3.0/samples/write_samples/employment-3.0.xml +45 -0
  108. data/resources/record_3.0/samples/write_samples/external-identifier-3.0.xml +11 -0
  109. data/resources/record_3.0/samples/write_samples/funding-3.0.xml +44 -0
  110. data/resources/record_3.0/samples/write_samples/invited-position-3.0.xml +45 -0
  111. data/resources/record_3.0/samples/write_samples/keyword-3.0.xml +7 -0
  112. data/resources/record_3.0/samples/write_samples/membership-3.0.xml +45 -0
  113. data/resources/record_3.0/samples/write_samples/other-name-3.0.xml +6 -0
  114. data/resources/record_3.0/samples/write_samples/peer-review-full-3.0.xml +48 -0
  115. data/resources/record_3.0/samples/write_samples/peer-review-full-award-subject-type-3.0.xml +48 -0
  116. data/resources/record_3.0/samples/write_samples/peer-review-simple-3.0.xml +32 -0
  117. data/resources/record_3.0/samples/write_samples/qualification-3.0.xml +45 -0
  118. data/resources/record_3.0/samples/write_samples/research-resource-3.0.xml +110 -0
  119. data/resources/record_3.0/samples/write_samples/researcher-url-3.0-no-name.xml +6 -0
  120. data/resources/record_3.0/samples/write_samples/researcher-url-3.0.xml +7 -0
  121. data/resources/record_3.0/samples/write_samples/service-3.0.xml +45 -0
  122. data/resources/record_3.0/samples/write_samples/work-full-3.0.xml +60 -0
  123. data/resources/record_3.0/samples/write_samples/work-simple-3.0.xml +18 -0
  124. data/resources/record_3.0/search-3.0.xsd +62 -0
  125. data/resources/record_3.0/service-3.0.xsd +51 -0
  126. data/resources/record_3.0/work-3.0.xsd +269 -0
  127. data/spec/api_spec.rb +3 -3
  128. data/spec/author_spec.rb +1 -1
  129. data/spec/external_identifier_spec.rb +2 -2
  130. data/spec/fixtures/external_identifier.xml +1 -1
  131. data/spec/fixtures/vcr_cassettes/OrcidClient/works/get/should_get_works.yml +23 -10
  132. data/spec/fixtures/vcr_cassettes/OrcidClient/works/post/should_create_work.yml +71 -74
  133. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/data.yml +43 -55
  134. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_data.yml +43 -55
  135. data/spec/fixtures/vcr_cassettes/OrcidClient_Notification/schema/validates_item_type_work.yml +39 -44
  136. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/literal.yml +43 -51
  137. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/valid.yml +40 -48
  138. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/with_ORCID_IDs.yml +39 -30
  139. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/data.yml +41 -49
  140. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/publication_date.yml +40 -48
  141. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_ORCID_IDs_for_contributors.yml +40 -31
  142. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_data.yml +40 -48
  143. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_from_DataCite_staging_system.yml +104 -0
  144. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_type_data-set.yml +40 -45
  145. data/spec/fixtures/work.xml +12 -16
  146. data/spec/notification_spec.rb +11 -10
  147. data/spec/work_spec.rb +26 -63
  148. metadata +133 -30
  149. data/.travis.yml +0 -17
  150. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/contributors/multiple_titles.yml +0 -102
  151. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/schema/validates_work_from_DataCite_test_system.yml +0 -95
  152. data/spec/fixtures/vcr_cassettes/OrcidClient_Work/user_example/fail/valid.yml +0 -95
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1e6875cbec9ce8befc3fbddfa52aec2f9ee898309322d8cca678bcb16347b5ce
4
- data.tar.gz: 14e5c5be7839448b44f7cfb6be792f922f76f336e56bc212b9d7b9a00cd26770
3
+ metadata.gz: aaaad53f92a801347b236a3cc74ba6fdd617b82d7b053991e691c12cea99bada
4
+ data.tar.gz: 52d70efb73909ec0a2140aa63d334cd62c6972d5b6cc1c3641584018ee226a55
5
5
  SHA512:
6
- metadata.gz: cbaedea055c352034422c15f822859acd5a026d9621826386991573c95cdaa5a9688ce77f24a8ecdf8f534f5ce94e2c345f7fb89de27c87eb5069e5f9c7998df
7
- data.tar.gz: ec415340d46d7e179dd8fdea430962274664a78a8c3f62c966219bcc4164eaecabaab54b8f5de0984d57e003b6da67661b539ff75b4be0538b230a20df389df9
6
+ metadata.gz: 603501bd1e9f5f167afcb24ef9f76d4e22a623968227677598c11a7ab424434461ab3b5b0f930a371133f5425089414c63a14aebd810bc67d212128c5f6d72be
7
+ data.tar.gz: 740fb302139d13746fdb8e38d8c51b9a62037104e46c60ab93ea90ff0924ce69ab39a571b95970e87b1531f067fec72fbc22791ca5819e199731aa62ec1d5b08
@@ -0,0 +1,39 @@
1
+ name: Build Ruby Gem
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "master"
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ env:
11
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Ruby 2.6
15
+ uses: actions/setup-ruby@v1
16
+ with:
17
+ ruby-version: 2.6.x
18
+
19
+ - name: Build and test
20
+ env:
21
+ ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
22
+ run: |
23
+ gem install bundler
24
+ bundle install
25
+ bundle exec rspec
26
+
27
+ # - name: Publish code coverage
28
+ # uses: paambaati/codeclimate-action@v2.7.4
29
+ # env:
30
+ # CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
31
+
32
+ - name: Notify Slack
33
+ uses: adamkdean/simple-slack-notify@1.0.4
34
+ with:
35
+ channel: '#ops'
36
+ username: 'GitHub Actions'
37
+ color: 'good'
38
+ text: 'A new version of the orcid_client gem has been built.'
39
+
@@ -0,0 +1,36 @@
1
+ name: Changelog
2
+
3
+ on:
4
+ pull_request:
5
+ types: [closed]
6
+
7
+ release:
8
+ types: [published]
9
+
10
+ issues:
11
+ types: [closed, edited]
12
+
13
+ jobs:
14
+ generate_changelog:
15
+ runs-on: ubuntu-latest
16
+ name: Generate changelog
17
+ steps:
18
+ - uses: actions/checkout@v1
19
+
20
+ - name: Generate changelog
21
+ uses: charmixer/auto-changelog-action@v1.1
22
+ with:
23
+ token: ${{ secrets.GITHUB_TOKEN }}
24
+
25
+ - name: Commit files
26
+ run: |
27
+ git config --local user.email "action@github.com"
28
+ git config --local user.name "GitHub Action"
29
+ git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md'
30
+
31
+ - name: Push changes
32
+ uses: ad-m/github-push-action@v0.6.0
33
+ with:
34
+ github_token: ${{ secrets.GITHUB_TOKEN }}
35
+ branch: 'refs/heads/master'
36
+ tags: false
@@ -0,0 +1,48 @@
1
+ name: Release Ruby Gem
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ env:
10
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Ruby 2.6
14
+ uses: actions/setup-ruby@v1
15
+ with:
16
+ ruby-version: 2.6.x
17
+
18
+ - name: Build and test
19
+ env:
20
+ ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
21
+ run: |
22
+ gem install bundler
23
+ bundle install
24
+ bundle exec rspec spec
25
+
26
+ # - name: Publish code coverage
27
+ # uses: paambaati/codeclimate-action@v2.7.4
28
+ # env:
29
+ # CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
30
+
31
+ - name: Publish to RubyGems
32
+ run: |
33
+ mkdir -p $HOME/.gem
34
+ touch $HOME/.gem/credentials
35
+ chmod 0600 $HOME/.gem/credentials
36
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
37
+ gem build *.gemspec
38
+ gem push *.gem
39
+ env:
40
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
41
+
42
+ - name: Notify Slack
43
+ uses: adamkdean/simple-slack-notify@1.0.4
44
+ with:
45
+ channel: '#ops'
46
+ username: 'GitHub Actions'
47
+ color: 'good'
48
+ text: 'A new version of the orcid_client gem has been released.'
data/CHANGELOG.md CHANGED
@@ -0,0 +1,169 @@
1
+ # Changelog
2
+
3
+ ## [0.9.5](https://github.com/datacite/orcid_client/tree/0.9.5) (2021-09-29)
4
+
5
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.4...0.9.5)
6
+
7
+ ## [0.9.4](https://github.com/datacite/orcid_client/tree/0.9.4) (2021-06-09)
8
+
9
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.3...0.9.4)
10
+
11
+ ## [0.9.3](https://github.com/datacite/orcid_client/tree/0.9.3) (2021-06-04)
12
+
13
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.2...0.9.3)
14
+
15
+ ## [0.9.2](https://github.com/datacite/orcid_client/tree/0.9.2) (2021-06-04)
16
+
17
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/0.9.1...0.9.2)
18
+
19
+ ## [0.9.1](https://github.com/datacite/orcid_client/tree/0.9.1) (2021-06-04)
20
+
21
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/0.9...0.9.1)
22
+
23
+ **Implemented enhancements:**
24
+
25
+ - Upgrade to ORCID schema 3.0 [\#12](https://github.com/datacite/orcid_client/issues/12)
26
+
27
+ ## [0.9](https://github.com/datacite/orcid_client/tree/0.9) (2021-06-04)
28
+
29
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.8...0.9)
30
+
31
+ **Merged pull requests:**
32
+
33
+ - Update nokogiri requirement from ~\> 1.10.4 to \>= 1.10.4, \< 1.12.0 [\#13](https://github.com/datacite/orcid_client/pull/13) ([dependabot[bot]](https://github.com/apps/dependabot))
34
+
35
+ ## [v.0.8](https://github.com/datacite/orcid_client/tree/v.0.8) (2019-10-09)
36
+
37
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.6.2...v.0.8)
38
+
39
+ ## [v.0.6.2](https://github.com/datacite/orcid_client/tree/v.0.6.2) (2019-09-14)
40
+
41
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.6.1...v.0.6.2)
42
+
43
+ ## [v.0.6.1](https://github.com/datacite/orcid_client/tree/v.0.6.1) (2019-09-14)
44
+
45
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.6.0...v.0.6.1)
46
+
47
+ ## [v.0.6.0](https://github.com/datacite/orcid_client/tree/v.0.6.0) (2019-09-14)
48
+
49
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.5.2...v.0.6.0)
50
+
51
+ ## [v.0.5.2](https://github.com/datacite/orcid_client/tree/v.0.5.2) (2019-09-01)
52
+
53
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.5.1...v.0.5.2)
54
+
55
+ ## [v.0.5.1](https://github.com/datacite/orcid_client/tree/v.0.5.1) (2018-12-30)
56
+
57
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.5...v.0.5.1)
58
+
59
+ ## [v.0.5](https://github.com/datacite/orcid_client/tree/v.0.5) (2018-12-30)
60
+
61
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.4...v.0.5)
62
+
63
+ **Fixed bugs:**
64
+
65
+ - update bolognese gem [\#4](https://github.com/datacite/orcid_client/issues/4)
66
+
67
+ ## [v.0.4.4](https://github.com/datacite/orcid_client/tree/v.0.4.4) (2018-12-13)
68
+
69
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.3...v.0.4.4)
70
+
71
+ ## [v.0.4.3](https://github.com/datacite/orcid_client/tree/v.0.4.3) (2018-12-12)
72
+
73
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.1...v.0.4.3)
74
+
75
+ **Merged pull requests:**
76
+
77
+ - Chore update Bolognese [\#3](https://github.com/datacite/orcid_client/pull/3) ([kjgarza](https://github.com/kjgarza))
78
+
79
+ ## [v.0.4.1](https://github.com/datacite/orcid_client/tree/v.0.4.1) (2018-04-11)
80
+
81
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4.2...v.0.4.1)
82
+
83
+ ## [v.0.4.2](https://github.com/datacite/orcid_client/tree/v.0.4.2) (2018-04-11)
84
+
85
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.4...v.0.4.2)
86
+
87
+ ## [v.0.4](https://github.com/datacite/orcid_client/tree/v.0.4) (2018-04-11)
88
+
89
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.3.3...v.0.4)
90
+
91
+ **Closed issues:**
92
+
93
+ - Upgrade to ORCID API 2.1 [\#2](https://github.com/datacite/orcid_client/issues/2)
94
+
95
+ ## [v.0.3.3](https://github.com/datacite/orcid_client/tree/v.0.3.3) (2017-06-25)
96
+
97
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.3.2...v.0.3.3)
98
+
99
+ ## [v.0.3.2](https://github.com/datacite/orcid_client/tree/v.0.3.2) (2017-06-25)
100
+
101
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.3.1...v.0.3.2)
102
+
103
+ **Implemented enhancements:**
104
+
105
+ - Upgrade to ORCID API 2.0 [\#1](https://github.com/datacite/orcid_client/issues/1)
106
+
107
+ ## [v.0.3.1](https://github.com/datacite/orcid_client/tree/v.0.3.1) (2017-06-20)
108
+
109
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.3.0...v.0.3.1)
110
+
111
+ ## [v.0.3.0](https://github.com/datacite/orcid_client/tree/v.0.3.0) (2017-06-20)
112
+
113
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.2.3...v.0.3.0)
114
+
115
+ ## [v.0.2.3](https://github.com/datacite/orcid_client/tree/v.0.2.3) (2017-02-04)
116
+
117
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.2.2...v.0.2.3)
118
+
119
+ ## [v.0.2.2](https://github.com/datacite/orcid_client/tree/v.0.2.2) (2017-02-02)
120
+
121
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.2.1...v.0.2.2)
122
+
123
+ ## [v.0.2.1](https://github.com/datacite/orcid_client/tree/v.0.2.1) (2016-11-27)
124
+
125
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.2...v.0.2.1)
126
+
127
+ ## [v.0.2](https://github.com/datacite/orcid_client/tree/v.0.2) (2016-11-27)
128
+
129
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.8...v.0.2)
130
+
131
+ ## [v.0.1.8](https://github.com/datacite/orcid_client/tree/v.0.1.8) (2016-11-26)
132
+
133
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.7...v.0.1.8)
134
+
135
+ ## [v.0.1.7](https://github.com/datacite/orcid_client/tree/v.0.1.7) (2016-11-26)
136
+
137
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.6...v.0.1.7)
138
+
139
+ ## [v.0.1.6](https://github.com/datacite/orcid_client/tree/v.0.1.6) (2016-11-26)
140
+
141
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.5...v.0.1.6)
142
+
143
+ ## [v.0.1.5](https://github.com/datacite/orcid_client/tree/v.0.1.5) (2016-11-26)
144
+
145
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.4...v.0.1.5)
146
+
147
+ ## [v.0.1.4](https://github.com/datacite/orcid_client/tree/v.0.1.4) (2016-11-25)
148
+
149
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.3...v.0.1.4)
150
+
151
+ ## [v.0.1.3](https://github.com/datacite/orcid_client/tree/v.0.1.3) (2016-11-22)
152
+
153
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.2...v.0.1.3)
154
+
155
+ ## [v.0.1.2](https://github.com/datacite/orcid_client/tree/v.0.1.2) (2016-11-18)
156
+
157
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1.1...v.0.1.2)
158
+
159
+ ## [v.0.1.1](https://github.com/datacite/orcid_client/tree/v.0.1.1) (2016-11-18)
160
+
161
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/v.0.1...v.0.1.1)
162
+
163
+ ## [v.0.1](https://github.com/datacite/orcid_client/tree/v.0.1) (2016-11-18)
164
+
165
+ [Full Changelog](https://github.com/datacite/orcid_client/compare/294490e0ece587608be60f8d8c3085baf2f171e7...v.0.1)
166
+
167
+
168
+
169
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/Gemfile.lock CHANGED
@@ -1,191 +1,210 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- orcid_client (0.8)
4
+ orcid_client (0.9.5)
5
5
  activesupport (>= 4.2.5, < 6)
6
- bolognese (~> 1.3, >= 1.3.19)
6
+ bolognese (~> 1.3, >= 1.9.8)
7
7
  builder (~> 3.2, >= 3.2.2)
8
8
  dotenv (~> 2.1, >= 2.1.1)
9
9
  maremma (>= 4.4)
10
10
  namae (~> 1.0.1)
11
- nokogiri (~> 1.10.4)
11
+ nokogiri (>= 1.10.4, < 1.12.0)
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- activesupport (5.2.3)
16
+ activesupport (5.2.6)
17
17
  concurrent-ruby (~> 1.0, >= 1.0.2)
18
18
  i18n (>= 0.7, < 2)
19
19
  minitest (~> 5.1)
20
20
  tzinfo (~> 1.1)
21
21
  addressable (2.7.0)
22
22
  public_suffix (>= 2.0.2, < 5.0)
23
+ amazing_print (1.3.0)
23
24
  benchmark_methods (0.7)
24
- bibtex-ruby (4.4.7)
25
+ bibtex-ruby (6.0.0)
25
26
  latex-decode (~> 0.0)
26
- bolognese (1.3.19)
27
- activesupport (>= 4.2.5, < 6)
27
+ bolognese (1.9.12)
28
+ activesupport (>= 4.2.5)
28
29
  benchmark_methods (~> 0.7)
29
- bibtex-ruby (~> 4.1)
30
+ bibtex-ruby (>= 5.1.0)
30
31
  builder (~> 3.2, >= 3.2.2)
31
- citeproc-ruby (~> 1.1, >= 1.1.10)
32
+ citeproc-ruby (~> 1.1, >= 1.1.12)
32
33
  colorize (~> 0.8.1)
33
- concurrent-ruby (~> 1.0.5)
34
- csl-styles (~> 1.0, >= 1.0.1.8)
34
+ concurrent-ruby (~> 1.1, >= 1.1.5)
35
+ csl-styles (~> 1.0, >= 1.0.1.10)
35
36
  edtf (~> 3.0, >= 3.0.4)
37
+ faraday (~> 0.17.3)
36
38
  gender_detector (~> 0.1.2)
37
39
  iso8601 (~> 0.9.1)
38
- json-ld-preloaded (= 3.0.2)
39
- jsonlint (~> 0.2.0)
40
+ json-ld-preloaded (~> 3.1, >= 3.1.3)
41
+ jsonlint (~> 0.3.0)
40
42
  loofah (~> 2.0, >= 2.0.3)
41
- maremma (>= 4.3, < 5)
43
+ maremma (>= 4.9.4, < 5)
42
44
  namae (~> 1.0)
43
- nokogiri (~> 1.10.4)
44
- oj (>= 2.8.3)
45
+ nokogiri (~> 1.11.2)
46
+ oj (~> 3.10)
47
+ oj_mimic_json (~> 1.0, >= 1.0.1)
45
48
  postrank-uri (~> 1.0, >= 1.0.18)
46
- rdf-rdfxml (~> 2.2)
47
- rdf-turtle (~> 3.0, >= 3.0.6)
48
- thor (~> 0.19)
49
- builder (3.2.3)
50
- citeproc (1.0.9)
49
+ rdf-rdfxml (~> 3.1)
50
+ rdf-turtle (~> 3.1)
51
+ thor (>= 0.19)
52
+ builder (3.2.4)
53
+ citeproc (1.0.10)
51
54
  namae (~> 1.0)
52
- citeproc-ruby (1.1.10)
55
+ citeproc-ruby (1.1.14)
53
56
  citeproc (~> 1.0, >= 1.0.9)
54
- csl (~> 1.5)
55
- codeclimate-test-reporter (1.0.9)
56
- simplecov (<= 0.13)
57
+ csl (~> 1.6)
57
58
  colorize (0.8.1)
58
- concurrent-ruby (1.0.5)
59
- crack (0.4.3)
60
- safe_yaml (~> 1.0.0)
61
- crass (1.0.4)
62
- csl (1.5.0)
59
+ concurrent-ruby (1.1.9)
60
+ crack (0.4.5)
61
+ rexml
62
+ crass (1.0.6)
63
+ csl (1.6.0)
63
64
  namae (~> 1.0)
64
- csl-styles (1.0.1.9)
65
+ rexml
66
+ csl-styles (1.0.1.11)
65
67
  csl (~> 1.0)
66
- diff-lcs (1.3)
67
- docile (1.1.5)
68
- dotenv (2.7.5)
69
- ebnf (1.1.3)
70
- rdf (~> 3.0)
71
- sxp (~> 1.0)
72
- edtf (3.0.5)
68
+ diff-lcs (1.4.4)
69
+ docile (1.4.0)
70
+ dotenv (2.7.6)
71
+ ebnf (2.2.1)
72
+ amazing_print (~> 1.2)
73
+ htmlentities (~> 4.3)
74
+ rdf (~> 3.1)
75
+ scanf (~> 1.0)
76
+ sxp (~> 1.1)
77
+ unicode-types (~> 1.6)
78
+ edtf (3.0.6)
73
79
  activesupport (>= 3.0, < 7.0)
74
- excon (0.67.0)
75
- faraday (0.17.0)
80
+ excon (0.71.1)
81
+ faraday (0.17.4)
76
82
  multipart-post (>= 1.2, < 3)
77
83
  faraday-encoding (0.0.5)
78
84
  faraday
79
- faraday_middleware (0.13.1)
85
+ faraday_middleware (0.14.0)
80
86
  faraday (>= 0.7.4, < 1.0)
81
87
  gender_detector (0.1.2)
82
88
  unicode_utils (>= 1.3.0)
83
- haml (5.1.2)
89
+ haml (5.2.2)
84
90
  temple (>= 0.8.0)
85
91
  tilt
86
92
  hamster (3.0.0)
87
93
  concurrent-ruby (~> 1.0)
88
- hashdiff (1.0.0)
94
+ hashdiff (1.0.1)
89
95
  htmlentities (4.3.4)
90
- i18n (1.7.0)
96
+ i18n (1.8.10)
91
97
  concurrent-ruby (~> 1.0)
92
98
  iso8601 (0.9.1)
93
- json (2.2.0)
94
- json-ld (3.0.2)
95
- multi_json (~> 1.12)
96
- rdf (>= 2.2.8, < 4.0)
97
- json-ld-preloaded (3.0.2)
98
- json-ld (~> 3.0)
99
- multi_json (~> 1.12)
100
- rdf (~> 3.0)
101
- jsonlint (0.2.0)
102
- oj (~> 2)
103
- trollop (~> 2)
104
- latex-decode (0.3.1)
99
+ json-canonicalization (0.2.1)
100
+ json-ld (3.1.10)
101
+ htmlentities (~> 4.3)
102
+ json-canonicalization (~> 0.2)
103
+ link_header (~> 0.0, >= 0.0.8)
104
+ multi_json (~> 1.14)
105
+ rack (~> 2.0)
106
+ rdf (~> 3.1)
107
+ json-ld-preloaded (3.1.6)
108
+ json-ld (~> 3.1)
109
+ rdf (~> 3.1)
110
+ jsonlint (0.3.0)
111
+ oj (~> 3)
112
+ optimist (~> 3)
113
+ latex-decode (0.3.2)
105
114
  link_header (0.0.8)
106
- loofah (2.3.0)
115
+ loofah (2.12.0)
107
116
  crass (~> 1.0.2)
108
117
  nokogiri (>= 1.5.9)
109
- maremma (4.4)
110
- activesupport (>= 4.2.5, < 6)
118
+ maremma (4.9.5)
119
+ activesupport (>= 4.2.5)
111
120
  addressable (>= 2.3.6)
112
121
  builder (~> 3.2, >= 3.2.2)
113
- excon (~> 0.67.0)
114
- faraday (~> 0.17.0)
122
+ excon (~> 0.71.0)
123
+ faraday (~> 0.17.3)
115
124
  faraday-encoding (~> 0.0.4)
116
- faraday_middleware (~> 0.13.1)
117
- multi_json (~> 1.12)
118
- nokogiri (~> 1.10.4)
125
+ faraday_middleware (~> 0.14.0)
126
+ nokogiri (~> 1.11.2)
119
127
  oj (>= 2.8.3)
120
- mini_portile2 (2.4.0)
121
- minitest (5.12.2)
122
- multi_json (1.13.1)
128
+ oj_mimic_json (~> 1.0, >= 1.0.1)
129
+ mini_portile2 (2.5.3)
130
+ minitest (5.14.4)
131
+ multi_json (1.15.0)
123
132
  multipart-post (2.1.1)
124
- namae (1.0.1)
125
- nokogiri (1.10.4)
126
- mini_portile2 (~> 2.4.0)
127
- oj (2.18.5)
133
+ namae (1.0.2)
134
+ nokogiri (1.11.7)
135
+ mini_portile2 (~> 2.5.0)
136
+ racc (~> 1.4)
137
+ oj (3.13.8)
138
+ oj_mimic_json (1.0.1)
139
+ optimist (3.0.1)
128
140
  postrank-uri (1.0.24)
129
141
  addressable (>= 2.4.0)
130
142
  nokogiri (>= 1.8.0)
131
143
  public_suffix (>= 2.0.0, < 2.1)
132
144
  public_suffix (2.0.5)
133
- rack (2.0.7)
145
+ racc (1.5.2)
146
+ rack (2.2.3)
134
147
  rack-test (0.8.3)
135
148
  rack (>= 1.0, < 3)
136
- rake (13.0.0)
137
- rdf (3.0.12)
149
+ rake (13.0.3)
150
+ rdf (3.1.15)
138
151
  hamster (~> 3.0)
139
152
  link_header (~> 0.0, >= 0.0.8)
140
- rdf-aggregate-repo (2.2.1)
141
- rdf (>= 2.2, < 4.0)
142
- rdf-rdfa (3.0.1)
143
- haml (~> 5.0)
153
+ rdf-aggregate-repo (3.1.0)
154
+ rdf (~> 3.1)
155
+ rdf-rdfa (3.1.3)
156
+ haml (~> 5.2)
144
157
  htmlentities (~> 4.3)
145
- rdf (~> 3.0)
146
- rdf-aggregate-repo (>= 2.2, < 4.0)
147
- rdf-xsd (~> 3.0)
148
- rdf-rdfxml (2.2.1)
158
+ rdf (~> 3.1, >= 3.1.13)
159
+ rdf-aggregate-repo (~> 3.1)
160
+ rdf-vocab (~> 3.1, >= 3.1.11)
161
+ rdf-xsd (~> 3.1)
162
+ rdf-rdfxml (3.1.1)
149
163
  htmlentities (~> 4.3)
150
- rdf (>= 2.2, < 4.0)
151
- rdf-rdfa (>= 2.2, < 4.0)
152
- rdf-xsd (>= 2.2, < 4.0)
153
- rdf-turtle (3.0.6)
154
- ebnf (~> 1.1)
155
- rdf (~> 3.0)
156
- rdf-xsd (3.0.1)
157
- rdf (~> 3.0)
158
- rspec (3.9.0)
159
- rspec-core (~> 3.9.0)
160
- rspec-expectations (~> 3.9.0)
161
- rspec-mocks (~> 3.9.0)
162
- rspec-core (3.9.0)
163
- rspec-support (~> 3.9.0)
164
- rspec-expectations (3.9.0)
164
+ rdf (~> 3.1)
165
+ rdf-rdfa (~> 3.1)
166
+ rdf-xsd (~> 3.1)
167
+ rdf-turtle (3.1.3)
168
+ ebnf (~> 2.1)
169
+ rdf (~> 3.1, >= 3.1.8)
170
+ rdf-vocab (3.1.14)
171
+ rdf (~> 3.1, >= 3.1.12)
172
+ rdf-xsd (3.1.1)
173
+ rdf (~> 3.1)
174
+ rexml (~> 3.2)
175
+ rexml (3.2.5)
176
+ rspec (3.10.0)
177
+ rspec-core (~> 3.10.0)
178
+ rspec-expectations (~> 3.10.0)
179
+ rspec-mocks (~> 3.10.0)
180
+ rspec-core (3.10.1)
181
+ rspec-support (~> 3.10.0)
182
+ rspec-expectations (3.10.1)
165
183
  diff-lcs (>= 1.2.0, < 2.0)
166
- rspec-support (~> 3.9.0)
167
- rspec-mocks (3.9.0)
184
+ rspec-support (~> 3.10.0)
185
+ rspec-mocks (3.10.2)
168
186
  diff-lcs (>= 1.2.0, < 2.0)
169
- rspec-support (~> 3.9.0)
170
- rspec-support (3.9.0)
171
- safe_yaml (1.0.5)
172
- simplecov (0.13.0)
173
- docile (~> 1.1.0)
174
- json (>= 1.8, < 3)
175
- simplecov-html (~> 0.10.0)
176
- simplecov-html (0.10.2)
177
- sxp (1.0.2)
178
- rdf (~> 3.0)
187
+ rspec-support (~> 3.10.0)
188
+ rspec-support (3.10.2)
189
+ scanf (1.0.0)
190
+ simplecov (0.21.2)
191
+ docile (~> 1.1)
192
+ simplecov-html (~> 0.11)
193
+ simplecov_json_formatter (~> 0.1)
194
+ simplecov-html (0.12.3)
195
+ simplecov_json_formatter (0.1.3)
196
+ sxp (1.1.0)
197
+ rdf (~> 3.1)
179
198
  temple (0.8.2)
180
- thor (0.20.3)
199
+ thor (1.1.0)
181
200
  thread_safe (0.3.6)
182
201
  tilt (2.0.10)
183
- trollop (2.9.9)
184
- tzinfo (1.2.5)
202
+ tzinfo (1.2.9)
185
203
  thread_safe (~> 0.1)
204
+ unicode-types (1.7.0)
186
205
  unicode_utils (1.4.0)
187
- vcr (5.0.0)
188
- webmock (3.7.6)
206
+ vcr (6.0.0)
207
+ webmock (3.13.0)
189
208
  addressable (>= 2.3.6)
190
209
  crack (>= 0.3.2)
191
210
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -194,8 +213,7 @@ PLATFORMS
194
213
  ruby
195
214
 
196
215
  DEPENDENCIES
197
- bundler (~> 1.0)
198
- codeclimate-test-reporter (~> 1.0.0)
216
+ bundler (>= 2.2.10)
199
217
  orcid_client!
200
218
  rack-test (~> 0)
201
219
  rake
@@ -205,4 +223,4 @@ DEPENDENCIES
205
223
  webmock (~> 3.0, >= 3.0.1)
206
224
 
207
225
  BUNDLED WITH
208
- 1.17.3
226
+ 2.2.28