blackfoundry-pcap 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -2
- metadata +3 -9
- data/ext/Pcap.o +0 -0
- data/ext/icmp_packet.o +0 -0
- data/ext/ip_packet.o +0 -0
- data/ext/packet.o +0 -0
- data/ext/tcp_packet.o +0 -0
- data/ext/udp_packet.o +0 -0
data/Rakefile
CHANGED
@@ -11,7 +11,7 @@ end
|
|
11
11
|
|
12
12
|
require 'jeweler'
|
13
13
|
Jeweler::Tasks.new do |s|
|
14
|
-
s.version = '0.2.
|
14
|
+
s.version = '0.2.2'
|
15
15
|
s.name = 'blackfoundry-pcap'
|
16
16
|
s.summary = 'extensions to ruby-pcap'
|
17
17
|
s.email = 'david@blackfoundry.com'
|
@@ -20,6 +20,6 @@ Jeweler::Tasks.new do |s|
|
|
20
20
|
eod
|
21
21
|
s.executables = []
|
22
22
|
s.authors = ['David Turnbull']
|
23
|
-
s.files = ['Rakefile', 'lib'] + Dir['ext/**'] + Dir['lib/**']
|
23
|
+
s.files = ['Rakefile', 'lib'] + Dir['ext/**'] + Dir['lib/**'] - Dir['ext/*.o']
|
24
24
|
end
|
25
25
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blackfoundry-pcap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 2
|
10
|
+
version: 0.2.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- David Turnbull
|
@@ -32,21 +32,15 @@ files:
|
|
32
32
|
- Rakefile
|
33
33
|
- ext/Makefile
|
34
34
|
- ext/Pcap.c
|
35
|
-
- ext/Pcap.o
|
36
35
|
- ext/extconf.rb
|
37
36
|
- ext/icmp_packet.c
|
38
|
-
- ext/icmp_packet.o
|
39
37
|
- ext/ip_packet.c
|
40
|
-
- ext/ip_packet.o
|
41
38
|
- ext/mkmf.log
|
42
39
|
- ext/packet.c
|
43
|
-
- ext/packet.o
|
44
40
|
- ext/pcap.bundle
|
45
41
|
- ext/ruby_pcap.h
|
46
42
|
- ext/tcp_packet.c
|
47
|
-
- ext/tcp_packet.o
|
48
43
|
- ext/udp_packet.c
|
49
|
-
- ext/udp_packet.o
|
50
44
|
- lib/pcap_misc.rb
|
51
45
|
- lib/pcaplet.rb
|
52
46
|
- ChangeLog
|
data/ext/Pcap.o
DELETED
Binary file
|
data/ext/icmp_packet.o
DELETED
Binary file
|
data/ext/ip_packet.o
DELETED
Binary file
|
data/ext/packet.o
DELETED
Binary file
|
data/ext/tcp_packet.o
DELETED
Binary file
|
data/ext/udp_packet.o
DELETED
Binary file
|