win32-pipe 0.3.6 → 0.3.7
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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +2 -2
- data/CHANGES +88 -83
- data/MANIFEST +19 -19
- data/README +58 -58
- data/Rakefile +70 -70
- data/certs/djberg96_pub.pem +21 -21
- data/examples/example_client.rb +29 -29
- data/examples/example_client_async.rb +82 -82
- data/examples/example_server.rb +32 -32
- data/examples/example_server_async.rb +100 -100
- data/lib/win32/pipe.rb +250 -251
- data/lib/win32/pipe/client.rb +65 -65
- data/lib/win32/pipe/server.rb +96 -96
- data/lib/win32/pipe/windows/constants.rb +46 -46
- data/lib/win32/pipe/windows/functions.rb +37 -37
- data/test/test_win32_pipe.rb +162 -162
- data/test/test_win32_pipe_client.rb +62 -62
- data/test/test_win32_pipe_server.rb +34 -34
- data/win32-pipe.gemspec +26 -26
- metadata +16 -9
- metadata.gz.sig +1 -1
data/win32-pipe.gemspec
CHANGED
@@ -1,26 +1,26 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = 'win32-pipe'
|
5
|
-
spec.version = '0.3.
|
6
|
-
spec.author = 'Daniel J. Berger'
|
7
|
-
spec.license = 'Artistic 2.0'
|
8
|
-
spec.email = 'djberg96@gmail.com'
|
9
|
-
spec.homepage = 'https://github.com/djberg96/win32-pipe'
|
10
|
-
spec.summary = 'An interface for named pipes on MS Windows'
|
11
|
-
spec.test_files = Dir['test/test_*.rb']
|
12
|
-
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
-
spec.cert_chain = ['certs/djberg96_pub.pem']
|
14
|
-
|
15
|
-
spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST']
|
16
|
-
|
17
|
-
spec.add_dependency('ffi')
|
18
|
-
spec.add_dependency('rake')
|
19
|
-
spec.add_development_dependency('test-unit')
|
20
|
-
|
21
|
-
spec.description = <<-EOF
|
22
|
-
The win32-pipe library provides an interface for named pipes on Windows.
|
23
|
-
A named pipe is a named, one-way or duplex pipe for communication
|
24
|
-
between the pipe server and one or more pipe clients.
|
25
|
-
EOF
|
26
|
-
end
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'win32-pipe'
|
5
|
+
spec.version = '0.3.7'
|
6
|
+
spec.author = 'Daniel J. Berger'
|
7
|
+
spec.license = 'Artistic 2.0'
|
8
|
+
spec.email = 'djberg96@gmail.com'
|
9
|
+
spec.homepage = 'https://github.com/djberg96/win32-pipe'
|
10
|
+
spec.summary = 'An interface for named pipes on MS Windows'
|
11
|
+
spec.test_files = Dir['test/test_*.rb']
|
12
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
+
spec.cert_chain = ['certs/djberg96_pub.pem']
|
14
|
+
|
15
|
+
spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST']
|
16
|
+
|
17
|
+
spec.add_dependency('ffi')
|
18
|
+
spec.add_dependency('rake')
|
19
|
+
spec.add_development_dependency('test-unit')
|
20
|
+
|
21
|
+
spec.description = <<-EOF
|
22
|
+
The win32-pipe library provides an interface for named pipes on Windows.
|
23
|
+
A named pipe is a named, one-way or duplex pipe for communication
|
24
|
+
between the pipe server and one or more pipe clients.
|
25
|
+
EOF
|
26
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-pipe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -30,7 +30,7 @@ cert_chain:
|
|
30
30
|
EJYzxdPOrx2n6NYR3Hk+vHP0U7UBSveI6+qx+ndQYaeyCn+GRX2PKS9h66YF/Q1V
|
31
31
|
tGSHgAmcLlkdGgan182qsE/4kKM=
|
32
32
|
-----END CERTIFICATE-----
|
33
|
-
date: 2015-
|
33
|
+
date: 2015-11-24 00:00:00.000000000 Z
|
34
34
|
dependencies:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: ffi
|
@@ -85,22 +85,29 @@ extra_rdoc_files:
|
|
85
85
|
- README
|
86
86
|
- MANIFEST
|
87
87
|
files:
|
88
|
-
-
|
89
|
-
- MANIFEST
|
90
|
-
- README
|
91
|
-
- Rakefile
|
88
|
+
- certs
|
92
89
|
- certs/djberg96_pub.pem
|
90
|
+
- CHANGES
|
91
|
+
- examples
|
93
92
|
- examples/example_client.rb
|
94
93
|
- examples/example_client_async.rb
|
95
94
|
- examples/example_server.rb
|
96
95
|
- examples/example_server_async.rb
|
97
|
-
- lib
|
98
|
-
- lib/win32
|
96
|
+
- lib
|
97
|
+
- lib/win32
|
98
|
+
- lib/win32/pipe
|
99
99
|
- lib/win32/pipe/client.rb
|
100
100
|
- lib/win32/pipe/server.rb
|
101
|
+
- lib/win32/pipe/windows
|
101
102
|
- lib/win32/pipe/windows/constants.rb
|
102
103
|
- lib/win32/pipe/windows/functions.rb
|
103
104
|
- lib/win32/pipe/windows/structs.rb
|
105
|
+
- lib/win32/pipe.rb
|
106
|
+
- lib/win32-pipe.rb
|
107
|
+
- MANIFEST
|
108
|
+
- Rakefile
|
109
|
+
- README
|
110
|
+
- test
|
104
111
|
- test/test_win32_pipe.rb
|
105
112
|
- test/test_win32_pipe_client.rb
|
106
113
|
- test/test_win32_pipe_server.rb
|
@@ -125,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
132
|
version: '0'
|
126
133
|
requirements: []
|
127
134
|
rubyforge_project:
|
128
|
-
rubygems_version: 2.4.
|
135
|
+
rubygems_version: 2.4.8
|
129
136
|
signing_key:
|
130
137
|
specification_version: 4
|
131
138
|
summary: An interface for named pipes on MS Windows
|
metadata.gz.sig
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
��0�-���s�.��)��WX��(�|�3�
|