You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
434 B
18 lines
434 B
require 'rubygems'
|
|
require 'rubygems/package_task'
|
|
|
|
spec = Gem::Specification.new do |s|
|
|
s.name = "rconfig"
|
|
s.version = "1.0.1"
|
|
s.author = "Peter Zotov"
|
|
s.email = "whitequark@whitequark.ru"
|
|
s.platform = Gem::Platform::RUBY
|
|
s.summary = "libconfig bindings"
|
|
s.files = [ File.join('ext', 'extconf.rb'), File.join('ext', 'rconfig.c') ].to_a
|
|
s.extensions = 'ext/extconf.rb'
|
|
end
|
|
|
|
Gem::PackageTask.new(spec) do |pkg|
|
|
end
|
|
|