-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathomniauth-orcid.gemspec
30 lines (27 loc) · 1.3 KB
/
omniauth-orcid.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require "date"
require File.expand_path("../lib/omniauth/orcid/version", __FILE__)
Gem::Specification.new do |s|
s.authors = ["Gudmundur A. Thorisson", "Martin Fenner"]
s.email = ["[email protected]", "[email protected]"]
s.name = "omniauth-orcid"
s.homepage = "https://github.com/datacite/omniauth-orcid"
s.summary = "ORCID OAuth 2.0 Strategy for OmniAuth 1.0"
s.date = Date.today
s.description = "Enables third-party client apps to connect to the ORCID API and access/update protected profile data"
s.require_paths = ["lib"]
s.version = OmniAuth::Orcid::VERSION
s.extra_rdoc_files = ["README.md"]
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
# Declary dependencies here, rather than in the Gemfile
s.add_dependency 'omniauth-oauth2', '~> 1.3'
s.add_dependency 'ruby_dig','~> 0.0.2'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'rspec', '~> 3.4'
s.add_development_dependency 'rack-test', '~> 0.6.3'
s.add_development_dependency 'webmock', '~> 3.0', '>= 3.0.1'
s.add_development_dependency 'codeclimate-test-reporter', "~> 1.0.0"
s.add_development_dependency 'simplecov'
end