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

omniauth-gitlab.gemspec « omniauth-gitlab « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be25cb50af6e38f24398cd8010fb8e15e8670cd6 (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 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth-gitlab/version'

Gem::Specification.new do |gem|
  gem.name          = 'omniauth-gitlab'
  gem.version       = Omniauth::Gitlab::VERSION
  gem.authors       = ['Sergey Sein']
  gem.email         = ['linchus@gmail.com']
  gem.description   = 'This is the strategy for authenticating to your GitLab service'
  gem.summary       = 'This is the strategy for authenticating to your GitLab service'
  gem.homepage      = 'https://github.com/linchus/omniauth-gitlab'

  gem.files         = Dir['lib/**/*.rb']
  gem.test_files    = Dir['spec/**/*.rb']
  gem.require_paths = ['lib']

  gem.add_dependency 'omniauth', '~> 1.0'
  gem.add_dependency 'omniauth-oauth2', '~> 1.7.1'
  gem.add_development_dependency 'rspec', '~> 3.1'
  gem.add_development_dependency 'rspec-its', '~> 1.0'
  gem.add_development_dependency 'simplecov'
  gem.add_development_dependency 'rake', '>= 12.0'
end