Welcome to mirror list, hosted at ThFree Co, Russian Federation.

omniauth-azure-oauth2.gemspec « omniauth-azure-oauth2 « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1299285b9450b90a0294f28ded22e1a50df1b2be (plain)
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
# -*- encoding: utf-8 -*-
require File.expand_path(File.join('..', 'lib', 'omniauth', 'azure_oauth2', 'version'), __FILE__)

Gem::Specification.new do |gem|
  gem.authors       = ["Mark Nadig"]
  gem.email         = ["mark@nadigs.net"]
  gem.description   = %q{An Windows Azure Active Directory OAuth2 strategy for OmniAuth}
  gem.summary       = %q{An Windows Azure Active Directory OAuth2 strategy for OmniAuth}
  gem.homepage      = "https://github.com/KonaTeam/omniauth-azure-oauth2"

  gem.files         =  Dir.glob("lib/**/*.*")
  gem.test_files    =  Dir.glob("spec/**/**/*.*")
  gem.name          = "omniauth-azure-oauth2"
  gem.require_paths = ["lib"]
  gem.version       = OmniAuth::AzureOauth2::VERSION
  gem.license       = "MIT"

  gem.add_runtime_dependency 'omniauth', '~> 2.0'
  gem.add_dependency 'jwt', ['>= 1.0', '< 3.0']

  gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.4'

  gem.add_development_dependency 'rspec', '>= 2.14.0'
  gem.add_development_dependency 'rake'
end