-
Notifications
You must be signed in to change notification settings - Fork 13
/
packetgen.gemspec
45 lines (37 loc) · 1.41 KB
/
packetgen.gemspec
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
45
# coding: utf-8
# frozen_string_literal: true
require_relative 'lib/packetgen/version'
Gem::Specification.new do |spec|
spec.name = 'packetgen'
spec.version = PacketGen::VERSION
spec.license = 'MIT'
spec.authors = ['LemonTree55']
spec.email = ['lenontree@proton.me']
spec.summary = 'Network packet generator and dissector'
spec.description = <<~DESC
PacketGen is a network packet manipulation library. It allows reading, parsing
and sending network packets with fun.
DESC
spec.metadata = {
'homepage_uri' => 'https://github.com/lemontree55/packetgen',
'source_code_uri' => 'https://github.com/lemontree55/packetgen',
'bug_tracker_uri' => 'https://github.com/lemontree55/packetgen/issues',
'documentation_uri' => 'https://www.rubydoc.info/gems/packetgen',
'wiki_uri' => 'https://github.com/lemontree55/packetgen/wiki'
}
spec.files = Dir['lib/**/*']
spec.bindir = 'bin'
spec.executables = %w[pgconsole]
spec.extra_rdoc_files = Dir['README.md', 'LICENSE']
spec.rdoc_options += [
'--title', 'PacketGen - network packet dissector',
'--main', 'README.md',
'--inline-source',
'--quiet'
]
spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'interfacez', '~>1.0'
spec.add_dependency 'pcaprub', '~>0.13.0'
spec.add_dependency 'rasn1', '~>0.13', '>=0.13.1'
spec.add_dependency 'digest-crc', '~> 0'
end