forked from ccrockett/omniauth-keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniauth-keycloak.gemspec
More file actions
34 lines (26 loc) · 1.23 KB
/
omniauth-keycloak.gemspec
File metadata and controls
34 lines (26 loc) · 1.23 KB
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
# frozen_string_literal: true
require File.expand_path('lib/omniauth/keycloak/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'omniauth-keycloak'
spec.version = Omniauth::Keycloak::VERSION
spec.authors = ['Cameron Crockett']
spec.email = ['cameron.crockett@ccrockett.com']
spec.description = 'Omniauth strategy for Keycloak'
spec.summary = spec.description
spec.homepage = 'https://github.com/ccrockett/omniauth-keycloak'
spec.license = 'MIT'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/ccrockett/omniauth-keycloak/issues',
'changelog_uri' => 'https://github.com/ccrockett/omniauth-keycloak/blob/master/CHANGELOG.md',
'homepage_uri' => 'https://github.com/ccrockett/omniauth-keycloak',
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/ccrockett/omniauth-keycloak'
}
spec.files = Dir['LICENSE.txt', 'README.md', 'CHANGELOG.md', 'lib/**/*.rb', 'bin/console']
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 3.1.2'
spec.required_ruby_version = '>= 2.6'
spec.add_dependency 'faraday'
spec.add_dependency 'json-jwt'
spec.add_dependency 'omniauth-oauth2', '>= 1.8'
end