File: rethtool.gemspec

package info (click to toggle)
ruby-rethtool 0.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 148 kB
  • sloc: ruby: 167; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 1,053 bytes parent folder | download | duplicates (2)
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