serverengine 1.6.0 → 1.6.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 104467c419789df193725e70a8d3de43e6351c73
4
- data.tar.gz: 0d10ddbca870bb40408d8bf56e9b2d52c024636d
3
+ metadata.gz: debb8b7610180c5b0980d3ff75235e924503ebb4
4
+ data.tar.gz: bd1f53485fd632906589b85c94f13d554fa3d652
5
5
  SHA512:
6
- metadata.gz: 8d33c621c6bc34a2029f100bfd61cf1a5f56c5bf81446702e1e28e2e814515ca312e5267816384b4e000da7a48a2977178297275018847fa4ef356cf650fe361
7
- data.tar.gz: 334a1f7311e02f4d37b660ff5cfe832d17fd2f755120c04c509f2997b77186b28581614c5ba13193b0affb1afe7a0da6b9cd4bde2dde4984e8d6daf1839eb94c
6
+ metadata.gz: 0e5097035cea3dfaf166bd5a1eea304feb5c364368616ee58c8140613adc6a0155c1ecd0d4f6c09991425fc9f5fa5b446c81d239ed72ed11cd30af5f2e6f69c4
7
+ data.tar.gz: d6de17641b8cc2d3c64ca1cc21cc6e9968065071077d4adbb68658e3c397f66a637828ce350d72d5b65e74d339014b93ba8972eb5dae42894cf055602ee44c58
data/Changelog CHANGED
@@ -1,3 +1,8 @@
1
+ 2016-03-04 version 1.6.1:
2
+
3
+ * Fix CloseHandle definition in winsock
4
+
5
+
1
6
  2015-01-07 version 1.6.0:
2
7
 
3
8
  * Added SocketManager, a utility class for multiprocess servers to listen on
data/README.md CHANGED
@@ -18,7 +18,7 @@ ServerEngine is a framework to implement robust multiprocess servers like Unicor
18
18
  ---+
19
19
  ```
20
20
 
21
- ServerEngine also provides useful options and utilities such as logging, signal handlers, changing process names shown by `ps` command, chuser, stacktrace and heap dump on signal.
21
+ ServerEngine also provides useful options and utilities such as **logging**, **signal handlers**, **changing process names** shown by `ps` command, chuser, **stacktrace** and **heap dump on signal**.
22
22
 
23
23
  * [Examples](#examples)
24
24
  * [Simplest server](#simplest-server)
@@ -1,3 +1,3 @@
1
1
  module ServerEngine
2
- VERSION = "1.6.0"
2
+ VERSION = "1.6.1"
3
3
  end
@@ -33,7 +33,6 @@ module ServerEngine
33
33
  extern "int listen(int, int)"
34
34
  extern "int WSADuplicateSocketA(int, DWORD, void *)"
35
35
  extern "int WSAGetLastError()"
36
- extern "BOOL CloseHandle(int)"
37
36
 
38
37
  SockaddrIn = struct(["short sin_family",
39
38
  "short sin_port",
@@ -87,6 +86,7 @@ module ServerEngine
87
86
 
88
87
  dlload "kernel32"
89
88
  extern "int GetModuleFileNameA(int, char *, int)"
89
+ extern "int CloseHandle(int)"
90
90
 
91
91
  ruby_bin_path_buf = Fiddle::Pointer.malloc(1000)
92
92
  GetModuleFileNameA(0, ruby_bin_path_buf, ruby_bin_path_buf.size)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: serverengine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-07 00:00:00.000000000 Z
11
+ date: 2016-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sigdump