-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-azure-devops.gemspec
33 lines (27 loc) · 1.27 KB
/
omniauth-azure-devops.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
# frozen_string_literal: true
require File.expand_path('lib/omni_auth/azure_devops/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'omniauth-azure-devops'
gem.version = OmniAuth::AzureDevops::VERSION
gem.authors = ['Rewind Software Inc. | Parth Chandgadhiya']
gem.email = ['[email protected]']
gem.summary = 'An Azure Devops OAuth strategy for OmniAuth 2.0'
gem.description = 'An Azure Devops OAuth strategy for OmniAuth 2.0'
gem.homepage = 'https://github.com/rewindio/omniauth-azure-devops'
gem.license = 'MIT'
gem.metadata = {
'rubygems_mfa_required' => 'false',
'bug_tracker_uri' => "#{gem.homepage}/issues",
'changelog_uri' => "#{gem.homepage}/blob/main/CHANGELOG.md",
'documentation_uri' => gem.homepage.to_s,
'homepage_uri' => gem.homepage.to_s,
'source_code_uri' => gem.homepage.to_s
}
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec|.github|examples)/}) }
gem.bindir = 'exe'
gem.executables = gem.files.grep(%r{^exe/}) { |f| File.basename(f) }
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 3.2'
gem.add_runtime_dependency 'omniauth', '>= 1', '< 3'
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.1'
end