-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathruby-keycloak-admin.gemspec
More file actions
39 lines (29 loc) · 1.3 KB
/
ruby-keycloak-admin.gemspec
File metadata and controls
39 lines (29 loc) · 1.3 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
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH << File.expand_path('lib', __dir__)
require 'keycloak/admin/version'
Gem::Specification.new do |spec|
spec.name = 'ruby-keycloak-admin'
spec.version = Keycloak::Admin::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Tobias Schäfer']
spec.email = ['github@blackox.org']
spec.summary = 'Ruby Keycloack admin API wrapper.'
spec.description = <<~DESC
#{spec.summary}
This gem provides a simple wrapper for the Keycloak admin API.
* https://www.keycloak.org
* https://www.keycloak.org/documentation
* https://www.keycloak.org/docs-api/26.5.2/rest-api/index.html
DESC
spec.homepage = 'https://github.com/tschaefer/ruby-keycloak-admin'
spec.license = 'MIT'
spec.files = Dir['lib/**/*']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.1'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['source_code_uri'] = 'https://github.com/tschaefer/ruby-keycloak-admin'
spec.metadata['bug_tracker_uri'] = 'https://github.com/tschaefer/ruby-keycloak-admin/issues'
spec.post_install_message = 'All your Keycloak are belong to us!'
spec.add_dependency 'hashie', '>= 5.0.0'
spec.add_dependency 'httparty', '>= 0.21', '< 0.25'
end