Standardizing project structure
This commit is contained in:
parent
adc97bb5d0
commit
80529bcf79
11 changed files with 582 additions and 21 deletions
22
ruby-lxc.gemspec
Normal file
22
ruby-lxc.gemspec
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue