summaryrefslogtreecommitdiff
path: root/net-dhcp.gemspec
diff options
context:
space:
mode:
authorMark J. Titorenko <mark.titorenko@alces-software.com>2011-11-17 20:32:43 +0000
committerMark J. Titorenko <mark.titorenko@alces-software.com>2011-11-17 20:32:43 +0000
commit93ae0b28b4623f6c2f3d92eea021f5058d72daf3 (patch)
tree3b182242540ec68483ec1c35891c3a6a84073341 /net-dhcp.gemspec
parent808f45d378773b12e9ecc5b6af1a634a96014d5a (diff)
downloadnet-dhcp-ruby-93ae0b28b4623f6c2f3d92eea021f5058d72daf3.tar.gz
initial gemification with bueller
Diffstat (limited to 'net-dhcp.gemspec')
-rw-r--r--net-dhcp.gemspec35
1 files changed, 35 insertions, 0 deletions
diff --git a/net-dhcp.gemspec b/net-dhcp.gemspec
new file mode 100644
index 0000000..05e5a87
--- /dev/null
+++ b/net-dhcp.gemspec
@@ -0,0 +1,35 @@
+$:.push File.expand_path("../lib", __FILE__)
+require 'net-dhcp/version'
+
+Gem::Specification.new do |s|
+ s.name = 'net-dhcp'
+ s.version = NetDhcp::VERSION
+ s.platform = Gem::Platform::RUBY
+ s.date = '2011-11-17'
+ s.authors = ['daniel martin gomez (etd)', 'syonbori', 'Mark J. Titorenko']
+ s.email = 'mark.titorenko@alces-software.com'
+ s.homepage = 'http://github.com/mjtko/net-dhcp'
+ s.summary = %Q{set of classes to low level handle the DHCP protocol}
+ s.description = %Q{The aim of Net::DHCP is to provide a set of classes to low level handle the DHCP protocol (rfc2131, rfc2132, etc.). With Net::DHCP you will be able to craft custom DHCP packages and have access to all the fields defined for the protocol.}
+ s.extra_rdoc_files = [
+ 'LICENSE',
+ 'README',
+ ]
+
+ s.required_rubygems_version = Gem::Requirement.new('>= 1.3.7')
+ s.rubygems_version = '1.3.7'
+ s.specification_version = 3
+
+ 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']
+
+ s.add_runtime_dependency 'pcap', '~> 0.7.0'
+ s.add_development_dependency 'rspec'
+ s.add_development_dependency 'bundler'
+ s.add_development_dependency 'bueller'
+ s.add_development_dependency 'rake'
+ s.add_development_dependency 'rcov'
+end
+