forked from theforeman/smart_proxy_realm_ad_plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmart_proxy_realm_ad_plugin.gemspec
More file actions
26 lines (21 loc) · 916 Bytes
/
smart_proxy_realm_ad_plugin.gemspec
File metadata and controls
26 lines (21 loc) · 916 Bytes
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
# frozen_string_literal: true
require File.expand_path('../lib/smart_proxy_realm_ad/version', __FILE__)
require 'date'
Gem::Specification.new do |s|
s.name = 'smart_proxy_realm_ad_plugin'
s.version = Proxy::AdRealm::VERSION
s.date = Date.today.to_s
s.license = 'GPL-3.0'
s.authors = ['Mårten Cassel']
s.email = ['marten.cassel@gmail.com']
s.homepage = 'https://github.com/theforeman/smart_proxy_realm_ad_plugin'
s.summary = "A realm ad provider plugin for Foreman's smart proxy"
s.description = "A realm ad provider plugin for Foreman's smart proxy"
s.files = Dir['{config,lib,bundler.d}/**/*'] + ['README.md', 'LICENSE']
s.test_files = Dir['test/**/*']
s.add_development_dependency('rake')
s.add_development_dependency('mocha')
s.add_development_dependency('test-unit')
s.add_dependency('rkerberos')
s.add_dependency('radcli')
end