summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Rodrigues <mikebrodrigues@gmail.com>2014-01-01 21:23:29 -0800
committerMichael Rodrigues <mikebrodrigues@gmail.com>2014-01-01 21:23:29 -0800
commitcb78387402a3509d7e45c882950b9ea53afa13f8 (patch)
treef04aef5558d203a22b29bed9e24537baf87f7b6b
parent8598a4c9b05f9268fb5928ff2d29892cb2b3f47f (diff)
downloadnet-dhcp-ruby-cb78387402a3509d7e45c882950b9ea53afa13f8.tar.gz
added dependencies to gemspec
-rw-r--r--net-dhcp.gemspec8
1 files changed, 6 insertions, 2 deletions
diff --git a/net-dhcp.gemspec b/net-dhcp.gemspec
index e8f60db..be07310 100644
--- a/net-dhcp.gemspec
+++ b/net-dhcp.gemspec
@@ -5,10 +5,10 @@ Gem::Specification.new do |s|
s.name = 'net-dhcp'
s.version = Net::Dhcp::VERSION
s.platform = Gem::Platform::RUBY
- s.date = "2012-01-21"
+ s.date = "2014-01-01"
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-ruby'
+ s.homepage = 'http://github.com/mjtko/net-dhcp-ruby'
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 = [
@@ -32,5 +32,9 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rake'
s.add_development_dependency 'rcov'
s.add_development_dependency 'rdoc'
+
+ s.add_runtime_dependency 'dhcp'
+ s.add_runtime_dependency 'ruby-pcap'
+
end