io_splice 2.2.0 → 2.2.0.18.g3025
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +1 -0
- data/.gitignore +2 -0
- data/.wrongdoc.yml +5 -0
- data/GNUmakefile +7 -193
- data/README +2 -2
- data/Rakefile +20 -106
- data/ext/io_splice/io_splice_ext.c +129 -36
- data/io_splice.gemspec +12 -24
- data/lib/io/splice.rb +95 -101
- data/pkg.mk +168 -0
- data/test/test_io_splice.rb +99 -50
- metadata +37 -13
metadata
CHANGED
@@ -1,24 +1,41 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: io_splice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 5787
|
5
|
+
prerelease: 9
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 2
|
9
9
|
- 0
|
10
|
-
|
10
|
+
- 18
|
11
|
+
- g
|
12
|
+
- 3025
|
13
|
+
version: 2.2.0.18.g3025
|
11
14
|
platform: ruby
|
12
15
|
authors:
|
13
|
-
- io_splice hackers
|
16
|
+
- Ruby io_splice hackers
|
14
17
|
autorequire:
|
15
18
|
bindir: bin
|
16
19
|
cert_chain: []
|
17
20
|
|
18
|
-
date:
|
21
|
+
date: 2011-02-28 00:00:00 +00:00
|
19
22
|
default_executable:
|
20
|
-
dependencies:
|
21
|
-
|
23
|
+
dependencies:
|
24
|
+
- !ruby/object:Gem::Dependency
|
25
|
+
name: wrongdoc
|
26
|
+
prerelease: false
|
27
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ~>
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
hash: 5
|
33
|
+
segments:
|
34
|
+
- 1
|
35
|
+
- 5
|
36
|
+
version: "1.5"
|
37
|
+
type: :development
|
38
|
+
version_requirements: *id001
|
22
39
|
description: |-
|
23
40
|
The splice family of Linux system calls can transfer data between file
|
24
41
|
descriptors without the need to copy data into userspace. Instead of a
|
@@ -36,15 +53,18 @@ extra_rdoc_files:
|
|
36
53
|
- ChangeLog
|
37
54
|
- lib/io/splice.rb
|
38
55
|
- ext/io_splice/io_splice_ext.c
|
56
|
+
- LATEST
|
39
57
|
files:
|
40
58
|
- .document
|
41
59
|
- .gitignore
|
42
60
|
- .manifest
|
61
|
+
- .wrongdoc.yml
|
43
62
|
- COPYING
|
44
63
|
- ChangeLog
|
45
64
|
- GIT-VERSION-FILE
|
46
65
|
- GIT-VERSION-GEN
|
47
66
|
- GNUmakefile
|
67
|
+
- LATEST
|
48
68
|
- LICENSE
|
49
69
|
- NEWS
|
50
70
|
- README
|
@@ -56,6 +76,7 @@ files:
|
|
56
76
|
- io_splice.gemspec
|
57
77
|
- lib/io/splice.rb
|
58
78
|
- local.mk.sample
|
79
|
+
- pkg.mk
|
59
80
|
- setup.rb
|
60
81
|
- test/test_io_splice.rb
|
61
82
|
has_rdoc: true
|
@@ -64,9 +85,10 @@ licenses: []
|
|
64
85
|
|
65
86
|
post_install_message:
|
66
87
|
rdoc_options:
|
67
|
-
- -Na
|
68
88
|
- -t
|
69
89
|
- io_splice - zero-copy pipe I/O for Linux and Ruby
|
90
|
+
- -W
|
91
|
+
- http://bogomips.org/ruby_io_splice.git/tree/%s
|
70
92
|
require_paths:
|
71
93
|
- lib
|
72
94
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -81,16 +103,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
104
|
none: false
|
83
105
|
requirements:
|
84
|
-
- - "
|
106
|
+
- - ">"
|
85
107
|
- !ruby/object:Gem::Version
|
86
|
-
hash:
|
108
|
+
hash: 25
|
87
109
|
segments:
|
88
|
-
-
|
89
|
-
|
110
|
+
- 1
|
111
|
+
- 3
|
112
|
+
- 1
|
113
|
+
version: 1.3.1
|
90
114
|
requirements: []
|
91
115
|
|
92
116
|
rubyforge_project: qrp
|
93
|
-
rubygems_version: 1.
|
117
|
+
rubygems_version: 1.5.2
|
94
118
|
signing_key:
|
95
119
|
specification_version: 3
|
96
120
|
summary: zero-copy pipe I/O for Linux and Ruby
|