File: macaddr.gemspec

package info (click to toggle)
ruby-macaddr 1.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 144 kB
  • sloc: ruby: 209; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 845 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
37
38
39
40
41
42
43
44
## macaddr.gemspec
#

Gem::Specification::new do |spec|
  spec.name = "macaddr"
  spec.version = "1.7.1"
  spec.platform = Gem::Platform::RUBY
  spec.summary = "macaddr"
  spec.description = "cross platform mac address determination for ruby"
  spec.license = "Ruby"

  spec.files =
["Gemfile",
 "LICENSE",
 "README",
 "Rakefile",
 "lib",
 "lib/macaddr.rb",
 "macaddr.gemspec",
 "rvmrc.example",
 "test",
 "test/data",
 "test/data/noifconfig",
 "test/data/osx",
 "test/mac_test.rb",
 "test/testing.rb"]

  spec.executables = []
  
  spec.require_path = "lib"

  spec.test_files = nil

  
    spec.add_dependency(*["systemu", "~> 2.6.2"])
  

  spec.extensions.push(*[])

  spec.rubyforge_project = "codeforpeople"
  spec.author = "Ara T. Howard"
  spec.email = "ara.t.howard@gmail.com"
  spec.homepage = "https://github.com/ahoward/macaddr"
end