forked from ickymettle/ruby-pcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-pcap.gemspec
20 lines (17 loc) · 934 Bytes
/
ruby-pcap.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |gem|
gem.name = "ruby-pcap"
gem.version = "0.7.9"
gem.authors = [%q{Masaki Fukushima}, %q{Andrew Hobson}]
gem.email = ["[email protected]"]
gem.description = %q{Ruby interface to LBL Packet Capture library. This library also includes classes to access packet header fields.}
gem.summary = %q{Ruby interface to LBL Packet Capture library. This library also includes classes to access packet header fields.}
gem.homepage = "https://github.com/ickymettle/ruby-pcap"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.extensions << "ext/extconf.rb"
end