omniauth-orcid 1.0 → 1.0.1
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/Gemfile +2 -2
- data/README.md +4 -0
- data/demo.rb +1 -1
- data/lib/omniauth/orcid/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 014bcb635ac59370ed0b52f945e480a1c75bd988
|
|
4
|
+
data.tar.gz: fe2189f5a092ab669a538ede6333bbefde5cfa3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5dcfd8cb87c495a48bcf8f06e53b3d1a31b8e27647bfcce75366771170be3c64f7da535d6888736c6d3629b29be73641d7963b5dd5aac764ed2de8777fc94c2
|
|
7
|
+
data.tar.gz: d3009264a0febb2fe630c109059657d38fa1d99070364c62acb936e39be77751447d985119afe356dbf63db04cfb7a8ed361899b59fc013a9269b62e9d80f99c
|
data/Gemfile
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
source
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
3
|
# Specify your gem's dependencies in omniauth-github.gemspec
|
|
4
4
|
gemspec
|
|
5
5
|
|
|
6
6
|
gem "omniauth-oauth2"
|
|
7
7
|
|
|
8
|
-
# These are development dependencies
|
|
8
|
+
# These are development dependencies
|
|
9
9
|
gem "rake"
|
|
10
10
|
#gem "rspec", "2.0.0.beta.8"
|
data/README.md
CHANGED
|
@@ -8,6 +8,10 @@ Provides basic support for connecting a client application to the [Open Research
|
|
|
8
8
|
|
|
9
9
|
Originally created for the [ORCID example client application in Rails](https://github.com/gthorisson/ORCID-example-client-app-rails), then turned into a gem.
|
|
10
10
|
|
|
11
|
+
This gem is used in the [DataCite-ORCID claiming tool](https://github.com/datacite/DataCite-ORCID) and the [Lagotto](https://github.com/lagotto/lagotto) open source application for tracking events around articles and other scholarly outputs.
|
|
12
|
+
|
|
13
|
+
[GrowKudos](https://www.growkudos.com) is a web app where the gem is in active use. There's a free registration during which (and after which) an ORCID can be connected via oAuth.
|
|
14
|
+
|
|
11
15
|
|
|
12
16
|
## Installation
|
|
13
17
|
|
data/demo.rb
CHANGED