Standardizing project structure

This commit is contained in:
Andre Nathan 2013-12-06 14:43:19 -02:00
parent adc97bb5d0
commit 80529bcf79
11 changed files with 582 additions and 21 deletions

22
ruby-lxc.gemspec Normal file
View file

@ -0,0 +1,22 @@
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'
s.has_rdoc = false
s.add_development_dependency "rake-compiler"
s.description = <<-EOF
Ruby-LXC is a Ruby binding for the liblxc library, allowing
Ruby scripts to create and manage Linux containers.
EOF
end