-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathomniauth-doximity-oauth2.gemspec
40 lines (33 loc) · 1.64 KB
/
omniauth-doximity-oauth2.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
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
require 'English'
require File.expand_path('lib/omniauth-doximity-oauth2/version', __dir__)
Gem::Specification.new do |spec|
spec.name = "omniauth-doximity-oauth2"
spec.version = OmniAuth::DoximityOauth2::VERSION
spec.authors = ["William Harvey"]
spec.email = ["[email protected]"]
spec.description = 'OmniAuth strategy for Doximity, supporting OIDC, and using PKCE'
spec.summary = 'OmniAuth strategy for Doximity'
spec.homepage = "https://github.com/doximity/omniauth-doximity-oauth2.git"
spec.license = "Apache-2.0"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "https://github.com/doximity/omniauth-doximity-oauth2/blob/master/CHANGELOG.md"
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_runtime_dependency "activesupport"
spec.add_runtime_dependency "faraday"
spec.add_runtime_dependency "jwt"
spec.add_runtime_dependency "multi_json"
spec.add_runtime_dependency "omniauth-oauth2"
spec.add_runtime_dependency "openssl"
spec.add_development_dependency "bundler", "~> 2.3.12"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "rubocop-rails"
spec.add_development_dependency "sdoc"
end