-
Notifications
You must be signed in to change notification settings - Fork 9
/
rpm.gemspec
25 lines (20 loc) · 844 Bytes
/
rpm.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'rpm/gem_version'
Gem::Specification.new do |s|
s.name = 'rpm'
s.version = RPM::GEM_VERSION
s.authors = ['Duncan Mac-Vicar P.']
s.email = ['[email protected]']
s.homepage = ''
s.summary = 'Ruby bindings for rpm (package manager)'
s.description = 'Ruby bindings for rpm. Almost a drop-in replacement for ruby-rpm. Uses FFI.'
s.rubyforge_project = 'rpm'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
# specify any dependencies here; for example:
s.add_development_dependency 'rake'
s.add_runtime_dependency 'ffi'
end