omniauth-orcid 1.0 → 1.0.1

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
  SHA1:
3
- metadata.gz: 0ede20a0539d30bcbe25b46fd7a809208b01ec57
4
- data.tar.gz: c3258e160fd3f4716810e6ca021302bde2157706
3
+ metadata.gz: 014bcb635ac59370ed0b52f945e480a1c75bd988
4
+ data.tar.gz: fe2189f5a092ab669a538ede6333bbefde5cfa3c
5
5
  SHA512:
6
- metadata.gz: 06f5b7f7610aec0fc91254d5ed04e1a37c9ffabf6618dbd77354401c3d5d0d0340d3939772524b2acaaa820187604a61678d211149e681be8f365e1fda9f6eec
7
- data.tar.gz: 8028010218d38d7ff715b5772e01a06de1d6acd7a6695c410a85ce0ff2e4b87940c9f87567247bc61a1743e2f80c29d2208a710c2c04774f5e641d11a373517d
6
+ metadata.gz: b5dcfd8cb87c495a48bcf8f06e53b3d1a31b8e27647bfcce75366771170be3c64f7da535d6888736c6d3629b29be73641d7963b5dd5aac764ed2de8777fc94c2
7
+ data.tar.gz: d3009264a0febb2fe630c109059657d38fa1d99070364c62acb936e39be77751447d985119afe356dbf63db04cfb7a8ed361899b59fc013a9269b62e9d80f99c
data/Gemfile CHANGED
@@ -1,10 +1,10 @@
1
- source :rubygems
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
@@ -5,7 +5,7 @@
5
5
  require 'rubygems'
6
6
  require 'sinatra'
7
7
  require 'haml'
8
- require 'omniauth-orcid'
8
+ require_relative 'lib/omniauth-orcid'
9
9
  require 'oauth2'
10
10
  require 'json'
11
11
 
@@ -1,5 +1,5 @@
1
1
  module OmniAuth
2
2
  module Orcid
3
- VERSION = "1.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-orcid
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gudmundur A. Thorisson