win32-ipc 0.6.2 → 0.6.3

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,4 +1,7 @@
1
- == 0.6.2 - 11-Jan-2015
1
+ == 0.6.3 - 10-Jan-2015
2
+ * Declare the FFI prototype for WaitForSingleObject as blocking.
3
+
4
+ == 0.6.2 - 10-Jan-2015
2
5
  * Declare the FFI prototype for WaitForMultipleObjects as blocking.
3
6
 
4
7
  == 0.6.1 - 9-Apr-2013
@@ -14,13 +14,13 @@ module Win32
14
14
  ffi_lib :kernel32
15
15
 
16
16
  attach_function :CloseHandle, [:handle], :bool
17
- attach_function :WaitForSingleObject, [:handle, :dword], :dword
17
+ attach_function :WaitForSingleObject, [:handle, :dword], :dword, :blocking => true
18
18
  attach_function :WaitForMultipleObjects, [:dword, :pointer, :bool, :dword], :dword, :blocking => true
19
19
 
20
20
  private_class_method :CloseHandle, :WaitForSingleObject, :WaitForMultipleObjects
21
21
 
22
22
  # The version of the win32-ipc library
23
- VERSION = '0.6.2'
23
+ VERSION = '0.6.3'
24
24
 
25
25
  SIGNALED = 1
26
26
  ABANDONED = -1
@@ -17,7 +17,7 @@ class TC_Win32_Ipc < Test::Unit::TestCase
17
17
  end
18
18
 
19
19
  test "version is set to expected value" do
20
- assert_equal('0.6.2', Ipc::VERSION)
20
+ assert_equal('0.6.3', Ipc::VERSION)
21
21
  end
22
22
 
23
23
  test "handle method basic functionality" do
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'win32-ipc'
5
- spec.version = '0.6.2'
5
+ spec.version = '0.6.3'
6
6
  spec.authors = ['Daniel J. Berger', 'Park Heesob']
7
7
  spec.license = 'Artistic 2.0'
8
8
  spec.email = 'djberg96@gmail.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: win32-ipc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.2
4
+ version: 0.6.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: