ruby-pcap 0.7.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = "ruby-pcap"
7
+ gem.version = "0.7.8"
8
+ gem.authors = [%q{Masaki Fukushima}, %q{Andrew Hobson}]
9
+ gem.email = ["mbarczak@gmail.com"]
10
+ gem.description = %q{Ruby interface to LBL Packet Capture library. This library also includes classes to access packet header fields.}
11
+ gem.summary = %q{Ruby interface to LBL Packet Capture library. This library also includes classes to access packet header fields.}
12
+ gem.homepage = "https://github.com/ickymettle/ruby-pcap"
13
+
14
+ gem.files = `git ls-files`.split($/)
15
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
+ gem.require_paths = ["lib"]
18
+
19
+ gem.extensions << "ext/extconf.rb"
20
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-pcap
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.8
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Masaki Fukushima
9
+ - Andrew Hobson
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2012-12-07 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: Ruby interface to LBL Packet Capture library. This library also includes
16
+ classes to access packet header fields.
17
+ email:
18
+ - mbarczak@gmail.com
19
+ executables: []
20
+ extensions:
21
+ - ext/extconf.rb
22
+ extra_rdoc_files: []
23
+ files:
24
+ - .gitignore
25
+ - COPYING
26
+ - ChangeLog
27
+ - Gemfile
28
+ - MANIFEST
29
+ - README
30
+ - README.ja
31
+ - Rakefile
32
+ - VERSION
33
+ - doc-ja/Capture.html
34
+ - doc-ja/Dumper.html
35
+ - doc-ja/Filter.html
36
+ - doc-ja/ICMPPacket.html
37
+ - doc-ja/IPAddress.html
38
+ - doc-ja/IPPacket.html
39
+ - doc-ja/Packet.html
40
+ - doc-ja/Pcap.html
41
+ - doc-ja/PcapError.html
42
+ - doc-ja/Pcaplet.html
43
+ - doc-ja/TCPPacket.html
44
+ - doc-ja/TruncatedPacket.html
45
+ - doc-ja/UDPPacket.html
46
+ - doc-ja/index.html
47
+ - doc/Capture.html
48
+ - doc/Dumper.html
49
+ - doc/Filter.html
50
+ - doc/ICMPPacket.html
51
+ - doc/IPAddress.html
52
+ - doc/IPPacket.html
53
+ - doc/Packet.html
54
+ - doc/Pcap.html
55
+ - doc/PcapError.html
56
+ - doc/Pcaplet.html
57
+ - doc/TCPPacket.html
58
+ - doc/TruncatedPacket.html
59
+ - doc/UDPPacket.html
60
+ - doc/index.html
61
+ - examples/httpdump.rb
62
+ - examples/rewrite_time.rb
63
+ - examples/tcpdump.rb
64
+ - examples/test.rb
65
+ - ext/Pcap.c
66
+ - ext/extconf.rb
67
+ - ext/icmp_packet.c
68
+ - ext/ip_packet.c
69
+ - ext/packet.c
70
+ - ext/ruby_pcap.h
71
+ - ext/tcp_packet.c
72
+ - ext/udp_packet.c
73
+ - lib/pcap_misc.rb
74
+ - lib/pcaplet.rb
75
+ - ruby-pcap.gemspec
76
+ homepage: https://github.com/ickymettle/ruby-pcap
77
+ licenses: []
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ! '>='
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 1.8.23
97
+ signing_key:
98
+ specification_version: 3
99
+ summary: Ruby interface to LBL Packet Capture library. This library also includes
100
+ classes to access packet header fields.
101
+ test_files: []