1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Gem::Specification.new do |s|
s.name = "rethtool"
s.version = File.read(File.expand_path('../VERSION', __FILE__)).strip
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Palmer"]
s.date = "2014-01-16"
s.email = "theshed+rethtool@hezmatt.org"
s.extra_rdoc_files = [
"COPYING",
"README.rdoc"
]
s.files = [
"COPYING",
"README.rdoc",
"VERSION",
"lib/rethtool.rb",
"lib/rethtool/ethtool_cmd.rb",
"lib/rethtool/ethtool_value.rb",
"lib/rethtool/interface_settings.rb",
"lib/rethtool/link_status.rb",
]
s.homepage = "http://theshed.hezmatt.org/rethtool"
s.licenses = ["GPLv3"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Partial Ruby wrapper around the SIOCETHTOOL ioctl"
s.specification_version = 3
s.add_runtime_dependency(%q<cstruct>, [">= 0"])
s.add_development_dependency(%q<rake>, ["~> 10.0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0"])
s.add_development_dependency(%q<rdoc>, ["~> 2.4"])
end
|