-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapt-pkg.gemspec
25 lines (21 loc) · 891 Bytes
/
apt-pkg.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
version_file = 'lib/debian/apt_pkg/gem_version'
require File.expand_path("../#{version_file}", __FILE__)
Gem::Specification.new do |s|
s.name = 'apt-pkg'
s.version = Debian::AptPkg::VERSION
s.authors = ['Laurent Arnoud']
s.email = '[email protected]'
s.description = 'Ruby interface to Debian apt-pkg'
s.summary = 'Ruby interface to Debian libapt-pkg'
s.homepage = 'https://github.com/spk/ruby-apt-pkg'
s.license = 'MIT'
s.extensions = ['ext/apt_pkg/extconf.rb']
s.extra_rdoc_files = Dir['*.md', 'ext/**/*.cpp']
s.files = Dir['LICENSE', 'README.md', 'History.md', 'Gemfile', 'lib/**/*.rb',
'ext/**/*', 'test/**/*']
s.rdoc_options = ['--charset=UTF-8']
s.require_paths = ['lib']
s.add_development_dependency('rake', '~> 13.0')
s.add_development_dependency('rake-compiler', '~> 1.0')
s.add_development_dependency('minitest', '~> 5.13')
end