-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathradcli.gemspec
26 lines (20 loc) · 928 Bytes
/
radcli.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
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'radcli'
spec.version = '1.1.0'
spec.authors = ['Mårten Cassel']
spec.license = 'Artistic-2.0'
spec.email = ['[email protected]']
spec.homepage = 'https://github.com/martencassel/radcli'
spec.summary = 'A Ruby interface for the adcli library'
spec.test_files = Dir['test/test*']
spec.extensions = ['ext/radcli/extconf.rb']
spec.files = `git ls-files`.split("\n").reject { |f| f.include?('git') }
spec.extra_rdoc_files = ['README.md', 'CHANGES', 'MANIFEST'] + Dir['ext/radcli/*.c']
spec.add_dependency('rake-compiler')
spec.add_development_dependency('test-unit', '>= 2.1.0')
spec.description = <<-EOF
The radcli library provides a Ruby interface for performing actions on
a Active Directory domain using the realmd/adcli tool library.
EOF
end