ruby-lxc/ruby-lxc.gemspec

26 lines
768 B
Ruby
Raw Normal View History

2013-12-06 17:43:19 +01:00
require 'rubygems'
require File.expand_path("../lib/lxc/version", __FILE__)
Gem::Specification.new do |s|
s.name = 'ruby-lxc'
s.version = LXC::VERSION
s.summary = 'Ruby bindings for liblxc'
s.author = 'Andre Nathan'
s.email = 'andre@digirati.com.br'
s.files = Dir.glob('ext/**/*.{c,rb}') +
Dir.glob('lib/**/*.rb')
s.extensions = 'ext/lxc/extconf.rb'
2014-02-20 12:30:10 +01:00
s.has_rdoc = true
2013-12-06 17:43:19 +01:00
2014-06-09 21:45:28 +02:00
s.add_development_dependency "rdoc"
s.add_development_dependency "rdoc-data"
2013-12-06 17:43:19 +01:00
s.add_development_dependency "rake-compiler"
2014-02-20 12:57:56 +01:00
s.homepage = 'https://github.com/lxc/ruby-lxc'
2013-12-06 17:43:19 +01:00
s.description = <<-EOF
Ruby-LXC is a Ruby binding for the liblxc library, allowing
Ruby scripts to create and manage Linux containers.
EOF
end