windows-pr 1.1.3 → 1.2.0
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.
- data/CHANGES +15 -0
- data/MANIFEST +65 -65
- data/README +149 -149
- data/Rakefile +37 -52
- data/doc/conversion_guide.txt +37 -37
- data/lib/windows/clipboard.rb +2 -0
- data/lib/windows/com.rb +2 -0
- data/lib/windows/com/accessibility.rb +12 -10
- data/lib/windows/com/automation.rb +149 -147
- data/lib/windows/com/variant.rb +24 -22
- data/lib/windows/console.rb +114 -112
- data/lib/windows/debug.rb +35 -33
- data/lib/windows/device_io.rb +248 -246
- data/lib/windows/directory.rb +2 -0
- data/lib/windows/error.rb +2 -0
- data/lib/windows/eventlog.rb +2 -0
- data/lib/windows/file.rb +264 -262
- data/lib/windows/file_mapping.rb +25 -23
- data/lib/windows/filesystem.rb +2 -0
- data/lib/windows/gdi/bitmap.rb +65 -63
- data/lib/windows/gdi/device_context.rb +46 -44
- data/lib/windows/gdi/metafile.rb +40 -38
- data/lib/windows/gdi/painting_drawing.rb +115 -113
- data/lib/windows/handle.rb +2 -0
- data/lib/windows/library.rb +2 -0
- data/lib/windows/limits.rb +34 -31
- data/lib/windows/mailslot.rb +2 -0
- data/lib/windows/memory.rb +2 -0
- data/lib/windows/msvcrt/buffer.rb +75 -73
- data/lib/windows/msvcrt/directory.rb +31 -29
- data/lib/windows/msvcrt/file.rb +47 -45
- data/lib/windows/msvcrt/io.rb +62 -60
- data/lib/windows/msvcrt/string.rb +2 -0
- data/lib/windows/msvcrt/time.rb +169 -167
- data/lib/windows/national.rb +580 -578
- data/lib/windows/network/management.rb +525 -523
- data/lib/windows/network/snmp.rb +92 -90
- data/lib/windows/network/winsock.rb +128 -126
- data/lib/windows/nio.rb +2 -0
- data/lib/windows/ntfs/winternl.rb +96 -82
- data/lib/windows/path.rb +143 -141
- data/lib/windows/pipe.rb +42 -40
- data/lib/windows/process.rb +2 -0
- data/lib/windows/registry.rb +171 -126
- data/lib/windows/security.rb +479 -477
- data/lib/windows/security/authentication.rb +32 -30
- data/lib/windows/service.rb +142 -140
- data/lib/windows/shell.rb +171 -169
- data/lib/windows/socket.rb +86 -0
- data/lib/windows/sound.rb +39 -37
- data/lib/windows/synchronize.rb +133 -131
- data/lib/windows/system_info.rb +4 -2
- data/lib/windows/thread.rb +2 -0
- data/lib/windows/time.rb +48 -46
- data/lib/windows/tool_helper.rb +36 -34
- data/lib/windows/unicode.rb +2 -0
- data/lib/windows/volume.rb +61 -59
- data/lib/windows/window.rb +81 -79
- data/lib/windows/window/classes.rb +59 -57
- data/lib/windows/window/dialog.rb +91 -89
- data/lib/windows/window/menu.rb +102 -100
- data/lib/windows/window/message.rb +297 -295
- data/lib/windows/window/properties.rb +20 -18
- data/lib/windows/window/timer.rb +19 -17
- data/lib/windows/wsa.rb +102 -0
- data/test/tc_clipboard.rb +41 -41
- data/test/tc_com.rb +32 -32
- data/test/tc_com_automation.rb +15 -15
- data/test/tc_console.rb +108 -108
- data/test/tc_debug.rb +48 -48
- data/test/tc_device_io.rb +29 -29
- data/test/tc_directory.rb +25 -25
- data/test/tc_error.rb +38 -50
- data/test/tc_eventlog.rb +58 -58
- data/test/tc_file.rb +67 -67
- data/test/tc_file_mapping.rb +38 -38
- data/test/tc_filesystem.rb +27 -27
- data/test/tc_gdi_bitmap.rb +25 -25
- data/test/tc_gdi_metafile.rb +23 -23
- data/test/tc_handle.rb +36 -36
- data/test/tc_library.rb +37 -37
- data/test/tc_limits.rb +34 -34
- data/test/tc_mailslot.rb +22 -22
- data/test/tc_memory.rb +44 -44
- data/test/tc_msvcrt_buffer.rb +59 -68
- data/test/tc_msvcrt_directory.rb +96 -98
- data/test/tc_msvcrt_file.rb +80 -80
- data/test/tc_msvcrt_io.rb +48 -48
- data/test/tc_msvcrt_string.rb +94 -93
- data/test/tc_msvcrt_time.rb +19 -29
- data/test/tc_national.rb +38 -38
- data/test/tc_network_management.rb +32 -32
- data/test/tc_network_snmp.rb +31 -31
- data/test/tc_network_winsock.rb +34 -34
- data/test/tc_nio.rb +32 -32
- data/test/tc_ntfs_winternl.rb +33 -18
- data/test/tc_path.rb +90 -90
- data/test/tc_pipe.rb +53 -53
- data/test/tc_process.rb +24 -24
- data/test/tc_registry.rb +29 -29
- data/test/tc_security.rb +104 -104
- data/test/tc_security_authentication.rb +34 -34
- data/test/tc_service.rb +57 -57
- data/test/tc_shell.rb +34 -34
- data/test/tc_socket.rb +20 -0
- data/test/tc_sound.rb +37 -37
- data/test/tc_synchronize.rb +75 -75
- data/test/tc_system_info.rb +33 -43
- data/test/tc_thread.rb +29 -29
- data/test/tc_time.rb +32 -32
- data/test/tc_tool_helper.rb +29 -29
- data/test/tc_unicode.rb +62 -62
- data/test/tc_volume.rb +47 -47
- data/test/tc_window.rb +45 -45
- data/test/tc_window_classes.rb +33 -33
- data/test/tc_window_dialog.rb +33 -33
- data/test/tc_window_menu.rb +29 -29
- data/test/tc_window_message.rb +33 -33
- data/test/tc_window_properties.rb +29 -29
- data/test/tc_window_timer.rb +29 -29
- data/test/tc_wsa.rb +19 -0
- data/windows-pr.gemspec +1 -1
- metadata +13 -7
data/test/tc_window_classes.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_classes.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Classes module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/classes'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowClassesFoo
|
|
10
|
-
include Windows::Window::Classes
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Classes < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowClassesFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(-8, WindowClassesFoo::GCL_MENUNAME)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowClassesFoo::GetClassInfo)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :GetClassInfo)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_classes.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Classes module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/classes'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowClassesFoo
|
|
10
|
+
include Windows::Window::Classes
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Classes < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowClassesFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(-8, WindowClassesFoo::GCL_MENUNAME)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowClassesFoo::GetClassInfo)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :GetClassInfo)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
data/test/tc_window_dialog.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_dialog.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Dialog module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/dialog'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowDialogFoo
|
|
10
|
-
include Windows::Window::Dialog
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Dialog < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowDialogFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(0, WindowDialogFoo::MB_OK)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowDialogFoo::MessageBox)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :MessageBox)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_dialog.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Dialog module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/dialog'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowDialogFoo
|
|
10
|
+
include Windows::Window::Dialog
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Dialog < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowDialogFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(0, WindowDialogFoo::MB_OK)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowDialogFoo::MessageBox)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :MessageBox)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
data/test/tc_window_menu.rb
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_menu.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Menu module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/menu'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowMenuFoo
|
|
10
|
-
include Windows::Window::Menu
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Menu < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowMenuFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(0, WindowMenuFoo::MF_INSERT)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowMenuFoo::AppendMenu)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_menu.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Menu module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/menu'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowMenuFoo
|
|
10
|
+
include Windows::Window::Menu
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Menu < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowMenuFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(0, WindowMenuFoo::MF_INSERT)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowMenuFoo::AppendMenu)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|
data/test/tc_window_message.rb
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_message.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Message module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/message'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowMessageFoo
|
|
10
|
-
include Windows::Window::Message
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Message < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowMessageFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_numeric_constants
|
|
19
|
-
assert_equal(5, WindowMessageFoo::WM_SIZE)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_constants
|
|
23
|
-
assert_not_nil(WindowMessageFoo::PostMessage)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def test_method_mixin
|
|
27
|
-
assert_respond_to(@foo, :PostMessage)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def teardown
|
|
31
|
-
@foo = nil
|
|
32
|
-
end
|
|
33
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_message.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Message module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/message'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowMessageFoo
|
|
10
|
+
include Windows::Window::Message
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Message < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowMessageFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_numeric_constants
|
|
19
|
+
assert_equal(5, WindowMessageFoo::WM_SIZE)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_constants
|
|
23
|
+
assert_not_nil(WindowMessageFoo::PostMessage)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def test_method_mixin
|
|
27
|
+
assert_respond_to(@foo, :PostMessage)
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def teardown
|
|
31
|
+
@foo = nil
|
|
32
|
+
end
|
|
33
|
+
end
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_properties.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Properties module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/properties'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowPropertiesFoo
|
|
10
|
-
include Windows::Window::Properties
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Properties < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowPropertiesFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_method_constants
|
|
19
|
-
assert_not_nil(WindowPropertiesFoo::EnumProps)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_mixin
|
|
23
|
-
assert_respond_to(@foo, :EnumProps)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_properties.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Properties module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/properties'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowPropertiesFoo
|
|
10
|
+
include Windows::Window::Properties
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Properties < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowPropertiesFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_method_constants
|
|
19
|
+
assert_not_nil(WindowPropertiesFoo::EnumProps)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_mixin
|
|
23
|
+
assert_respond_to(@foo, :EnumProps)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|
data/test/tc_window_timer.rb
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
#####################################################################
|
|
2
|
-
# tc_window_timer.rb
|
|
3
|
-
#
|
|
4
|
-
# Test case for the Windows::Window::Timer module.
|
|
5
|
-
#####################################################################
|
|
6
|
-
require 'windows/window/timer'
|
|
7
|
-
require 'test/unit'
|
|
8
|
-
|
|
9
|
-
class WindowTimerFoo
|
|
10
|
-
include Windows::Window::Timer
|
|
11
|
-
end
|
|
12
|
-
|
|
13
|
-
class TC_Windows_Window_Timer < Test::Unit::TestCase
|
|
14
|
-
def setup
|
|
15
|
-
@foo = WindowTimerFoo.new
|
|
16
|
-
end
|
|
17
|
-
|
|
18
|
-
def test_method_constants
|
|
19
|
-
assert_not_nil(WindowTimerFoo::KillTimer)
|
|
20
|
-
end
|
|
21
|
-
|
|
22
|
-
def test_method_mixin
|
|
23
|
-
assert_respond_to(@foo, :KillTimer)
|
|
24
|
-
end
|
|
25
|
-
|
|
26
|
-
def teardown
|
|
27
|
-
@foo = nil
|
|
28
|
-
end
|
|
29
|
-
end
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_window_timer.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::Window::Timer module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/window/timer'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class WindowTimerFoo
|
|
10
|
+
include Windows::Window::Timer
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
class TC_Windows_Window_Timer < Test::Unit::TestCase
|
|
14
|
+
def setup
|
|
15
|
+
@foo = WindowTimerFoo.new
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_method_constants
|
|
19
|
+
assert_not_nil(WindowTimerFoo::KillTimer)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def test_method_mixin
|
|
23
|
+
assert_respond_to(@foo, :KillTimer)
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def teardown
|
|
27
|
+
@foo = nil
|
|
28
|
+
end
|
|
29
|
+
end
|
data/test/tc_wsa.rb
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#####################################################################
|
|
2
|
+
# tc_wsa.rb
|
|
3
|
+
#
|
|
4
|
+
# Test case for the Windows::WSA module.
|
|
5
|
+
#####################################################################
|
|
6
|
+
require 'windows/wsa'
|
|
7
|
+
require 'test/unit'
|
|
8
|
+
|
|
9
|
+
class TC_Windows_WSA < Test::Unit::TestCase
|
|
10
|
+
include Windows::WSA
|
|
11
|
+
|
|
12
|
+
def test_methods
|
|
13
|
+
assert_respond_to(self, :WSAAccept)
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def test_constants
|
|
17
|
+
assert_equal(1, WSA_FLAG_OVERLAPPED)
|
|
18
|
+
end
|
|
19
|
+
end
|
data/windows-pr.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: windows-pr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
version: 1.
|
|
8
|
+
- 2
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.2.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Daniel J. Berger
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-
|
|
19
|
+
date: 2011-03-24 00:00:00 -06:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -108,6 +108,7 @@ files:
|
|
|
108
108
|
- lib/windows/security.rb
|
|
109
109
|
- lib/windows/service.rb
|
|
110
110
|
- lib/windows/shell.rb
|
|
111
|
+
- lib/windows/socket.rb
|
|
111
112
|
- lib/windows/sound.rb
|
|
112
113
|
- lib/windows/synchronize.rb
|
|
113
114
|
- lib/windows/system_info.rb
|
|
@@ -123,6 +124,7 @@ files:
|
|
|
123
124
|
- lib/windows/window/properties.rb
|
|
124
125
|
- lib/windows/window/timer.rb
|
|
125
126
|
- lib/windows/window.rb
|
|
127
|
+
- lib/windows/wsa.rb
|
|
126
128
|
- MANIFEST
|
|
127
129
|
- Rakefile
|
|
128
130
|
- README
|
|
@@ -165,6 +167,7 @@ files:
|
|
|
165
167
|
- test/tc_security_authentication.rb
|
|
166
168
|
- test/tc_service.rb
|
|
167
169
|
- test/tc_shell.rb
|
|
170
|
+
- test/tc_socket.rb
|
|
168
171
|
- test/tc_sound.rb
|
|
169
172
|
- test/tc_synchronize.rb
|
|
170
173
|
- test/tc_system_info.rb
|
|
@@ -180,6 +183,7 @@ files:
|
|
|
180
183
|
- test/tc_window_message.rb
|
|
181
184
|
- test/tc_window_properties.rb
|
|
182
185
|
- test/tc_window_timer.rb
|
|
186
|
+
- test/tc_wsa.rb
|
|
183
187
|
- windows-pr.gemspec
|
|
184
188
|
has_rdoc: true
|
|
185
189
|
homepage: http://www.rubyforge.org/projects/win32utils
|
|
@@ -211,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
211
215
|
requirements: []
|
|
212
216
|
|
|
213
217
|
rubyforge_project: win32utils
|
|
214
|
-
rubygems_version: 1.
|
|
218
|
+
rubygems_version: 1.4.2
|
|
215
219
|
signing_key:
|
|
216
220
|
specification_version: 3
|
|
217
221
|
summary: Windows functions and constants bundled via Win32::API
|
|
@@ -255,6 +259,7 @@ test_files:
|
|
|
255
259
|
- test/tc_security_authentication.rb
|
|
256
260
|
- test/tc_service.rb
|
|
257
261
|
- test/tc_shell.rb
|
|
262
|
+
- test/tc_socket.rb
|
|
258
263
|
- test/tc_sound.rb
|
|
259
264
|
- test/tc_synchronize.rb
|
|
260
265
|
- test/tc_system_info.rb
|
|
@@ -270,3 +275,4 @@ test_files:
|
|
|
270
275
|
- test/tc_window_message.rb
|
|
271
276
|
- test/tc_window_properties.rb
|
|
272
277
|
- test/tc_window_timer.rb
|
|
278
|
+
- test/tc_wsa.rb
|