Sha256: dbfb1250ac9dcacad465234872b2f3cd0085e579f739a3ea7f0a424c7864d846

Contents?: true

Size: 1.64 KB

Versions: 4

Compression:

Stored size: 1.64 KB

Contents

# 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         = ["wharvey@doximity.com"]
  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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omniauth-doximity-oauth2-1.2.0.pre.2 omniauth-doximity-oauth2.gemspec
omniauth-doximity-oauth2-1.2.0.pre omniauth-doximity-oauth2.gemspec
omniauth-doximity-oauth2-1.1.0 omniauth-doximity-oauth2.gemspec
omniauth-doximity-oauth2-1.0.0 omniauth-doximity-oauth2.gemspec