wdm 0.1.0 → 0.1.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 +7 -0
- data/LICENSE +21 -21
- data/README.md +206 -206
- data/ext/wdm/entry.c +71 -71
- data/ext/wdm/entry.h +46 -46
- data/ext/wdm/extconf.rb +28 -27
- data/ext/wdm/memory.c +26 -26
- data/ext/wdm/memory.h +29 -29
- data/ext/wdm/monitor.c +74 -74
- data/ext/wdm/monitor.h +49 -49
- data/ext/wdm/queue.c +195 -195
- data/ext/wdm/queue.h +72 -72
- data/ext/wdm/rb_change.c +198 -198
- data/ext/wdm/rb_change.h +27 -27
- data/ext/wdm/rb_monitor.c +574 -570
- data/ext/wdm/rb_monitor.h +39 -39
- data/ext/wdm/utils.c +76 -76
- data/ext/wdm/utils.h +25 -25
- data/ext/wdm/wdm.c +46 -46
- data/ext/wdm/wdm.h +81 -71
- data/ext/wdm/wdm.sln +20 -20
- data/ext/wdm/wdm.vcxproj +105 -105
- data/ext/wdm/wdm.vcxproj.filters +73 -73
- data/lib/wdm.rb +9 -9
- metadata +20 -64
data/ext/wdm/wdm.sln
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 11.00
|
3
|
-
# Visual Studio 2010
|
4
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wdm", "wdm.vcxproj", "{5FFD32C8-057E-4390-BB51-1A4391488DEC}"
|
5
|
-
EndProject
|
6
|
-
Global
|
7
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
8
|
-
Debug|Win32 = Debug|Win32
|
9
|
-
Release|Win32 = Release|Win32
|
10
|
-
EndGlobalSection
|
11
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
12
|
-
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
13
|
-
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Debug|Win32.Build.0 = Debug|Win32
|
14
|
-
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Release|Win32.ActiveCfg = Release|Win32
|
15
|
-
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Release|Win32.Build.0 = Release|Win32
|
16
|
-
EndGlobalSection
|
17
|
-
GlobalSection(SolutionProperties) = preSolution
|
18
|
-
HideSolutionNode = FALSE
|
19
|
-
EndGlobalSection
|
20
|
-
EndGlobal
|
1
|
+
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 11.00
|
3
|
+
# Visual Studio 2010
|
4
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wdm", "wdm.vcxproj", "{5FFD32C8-057E-4390-BB51-1A4391488DEC}"
|
5
|
+
EndProject
|
6
|
+
Global
|
7
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
8
|
+
Debug|Win32 = Debug|Win32
|
9
|
+
Release|Win32 = Release|Win32
|
10
|
+
EndGlobalSection
|
11
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
12
|
+
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Debug|Win32.ActiveCfg = Debug|Win32
|
13
|
+
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Debug|Win32.Build.0 = Debug|Win32
|
14
|
+
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Release|Win32.ActiveCfg = Release|Win32
|
15
|
+
{5FFD32C8-057E-4390-BB51-1A4391488DEC}.Release|Win32.Build.0 = Release|Win32
|
16
|
+
EndGlobalSection
|
17
|
+
GlobalSection(SolutionProperties) = preSolution
|
18
|
+
HideSolutionNode = FALSE
|
19
|
+
EndGlobalSection
|
20
|
+
EndGlobal
|
data/ext/wdm/wdm.vcxproj
CHANGED
@@ -1,106 +1,106 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
5
|
-
<Configuration>Debug</Configuration>
|
6
|
-
<Platform>Win32</Platform>
|
7
|
-
</ProjectConfiguration>
|
8
|
-
<ProjectConfiguration Include="Release|Win32">
|
9
|
-
<Configuration>Release</Configuration>
|
10
|
-
<Platform>Win32</Platform>
|
11
|
-
</ProjectConfiguration>
|
12
|
-
</ItemGroup>
|
13
|
-
<PropertyGroup Label="Globals">
|
14
|
-
<ProjectGuid>{5FFD32C8-057E-4390-BB51-1A4391488DEC}</ProjectGuid>
|
15
|
-
<Keyword>Win32Proj</Keyword>
|
16
|
-
<RootNamespace>wdm</RootNamespace>
|
17
|
-
</PropertyGroup>
|
18
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
19
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
20
|
-
<ConfigurationType>Application</ConfigurationType>
|
21
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
22
|
-
<CharacterSet>Unicode</CharacterSet>
|
23
|
-
<PlatformToolset>
|
24
|
-
</PropertyGroup>
|
25
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
26
|
-
<ConfigurationType>Application</ConfigurationType>
|
27
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
28
|
-
<WholeProgramOptimization>true</WholeProgramOptimization>
|
29
|
-
<CharacterSet>Unicode</CharacterSet>
|
30
|
-
<PlatformToolset>
|
31
|
-
</PropertyGroup>
|
32
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
33
|
-
<ImportGroup Label="ExtensionSettings">
|
34
|
-
</ImportGroup>
|
35
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
36
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
37
|
-
</ImportGroup>
|
38
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
39
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
40
|
-
</ImportGroup>
|
41
|
-
<PropertyGroup Label="UserMacros" />
|
42
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
43
|
-
<LinkIncremental>true</LinkIncremental>
|
44
|
-
<IncludePath>C:\Ruby193\include\ruby-1.9.1;$(IncludePath)</IncludePath>
|
45
|
-
</PropertyGroup>
|
46
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
47
|
-
<LinkIncremental>false</LinkIncremental>
|
48
|
-
</PropertyGroup>
|
49
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
50
|
-
<ClCompile>
|
51
|
-
<PrecompiledHeader>
|
52
|
-
</PrecompiledHeader>
|
53
|
-
<WarningLevel>Level3</WarningLevel>
|
54
|
-
<Optimization>Disabled</Optimization>
|
55
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
56
|
-
<CompileAs>CompileAsC</CompileAs>
|
57
|
-
</ClCompile>
|
58
|
-
<Link>
|
59
|
-
<SubSystem>Console</SubSystem>
|
60
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
61
|
-
</Link>
|
62
|
-
</ItemDefinitionGroup>
|
63
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
64
|
-
<ClCompile>
|
65
|
-
<WarningLevel>Level3</WarningLevel>
|
66
|
-
<PrecompiledHeader>
|
67
|
-
</PrecompiledHeader>
|
68
|
-
<Optimization>MaxSpeed</Optimization>
|
69
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
70
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
71
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
72
|
-
</ClCompile>
|
73
|
-
<Link>
|
74
|
-
<SubSystem>Console</SubSystem>
|
75
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
76
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
77
|
-
<OptimizeReferences>true</OptimizeReferences>
|
78
|
-
</Link>
|
79
|
-
</ItemDefinitionGroup>
|
80
|
-
<ItemGroup>
|
81
|
-
<ClInclude Include="entry.h" />
|
82
|
-
<ClInclude Include="memory.h" />
|
83
|
-
<ClInclude Include="monitor.h" />
|
84
|
-
<ClInclude Include="queue.h" />
|
85
|
-
<ClInclude Include="rb_change.h" />
|
86
|
-
<ClInclude Include="rb_monitor.h" />
|
87
|
-
<ClInclude Include="utils.h" />
|
88
|
-
<ClInclude Include="wdm.h" />
|
89
|
-
</ItemGroup>
|
90
|
-
<ItemGroup>
|
91
|
-
<ClCompile Include="entry.c" />
|
92
|
-
<ClCompile Include="memory.c" />
|
93
|
-
<ClCompile Include="monitor.c" />
|
94
|
-
<ClCompile Include="queue.c" />
|
95
|
-
<ClCompile Include="rb_change.c" />
|
96
|
-
<ClCompile Include="rb_monitor.c" />
|
97
|
-
<ClCompile Include="utils.c" />
|
98
|
-
<ClCompile Include="wdm.c" />
|
99
|
-
</ItemGroup>
|
100
|
-
<ItemGroup>
|
101
|
-
<None Include="extconf.rb" />
|
102
|
-
</ItemGroup>
|
103
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
104
|
-
<ImportGroup Label="ExtensionTargets">
|
105
|
-
</ImportGroup>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup Label="ProjectConfigurations">
|
4
|
+
<ProjectConfiguration Include="Debug|Win32">
|
5
|
+
<Configuration>Debug</Configuration>
|
6
|
+
<Platform>Win32</Platform>
|
7
|
+
</ProjectConfiguration>
|
8
|
+
<ProjectConfiguration Include="Release|Win32">
|
9
|
+
<Configuration>Release</Configuration>
|
10
|
+
<Platform>Win32</Platform>
|
11
|
+
</ProjectConfiguration>
|
12
|
+
</ItemGroup>
|
13
|
+
<PropertyGroup Label="Globals">
|
14
|
+
<ProjectGuid>{5FFD32C8-057E-4390-BB51-1A4391488DEC}</ProjectGuid>
|
15
|
+
<Keyword>Win32Proj</Keyword>
|
16
|
+
<RootNamespace>wdm</RootNamespace>
|
17
|
+
</PropertyGroup>
|
18
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
19
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
20
|
+
<ConfigurationType>Application</ConfigurationType>
|
21
|
+
<UseDebugLibraries>true</UseDebugLibraries>
|
22
|
+
<CharacterSet>Unicode</CharacterSet>
|
23
|
+
<PlatformToolset>v140</PlatformToolset>
|
24
|
+
</PropertyGroup>
|
25
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
26
|
+
<ConfigurationType>Application</ConfigurationType>
|
27
|
+
<UseDebugLibraries>false</UseDebugLibraries>
|
28
|
+
<WholeProgramOptimization>true</WholeProgramOptimization>
|
29
|
+
<CharacterSet>Unicode</CharacterSet>
|
30
|
+
<PlatformToolset>v140</PlatformToolset>
|
31
|
+
</PropertyGroup>
|
32
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
33
|
+
<ImportGroup Label="ExtensionSettings">
|
34
|
+
</ImportGroup>
|
35
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
36
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
37
|
+
</ImportGroup>
|
38
|
+
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
39
|
+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
40
|
+
</ImportGroup>
|
41
|
+
<PropertyGroup Label="UserMacros" />
|
42
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
43
|
+
<LinkIncremental>true</LinkIncremental>
|
44
|
+
<IncludePath>C:\Ruby193\include\ruby-1.9.1;$(IncludePath)</IncludePath>
|
45
|
+
</PropertyGroup>
|
46
|
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
47
|
+
<LinkIncremental>false</LinkIncremental>
|
48
|
+
</PropertyGroup>
|
49
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
50
|
+
<ClCompile>
|
51
|
+
<PrecompiledHeader>
|
52
|
+
</PrecompiledHeader>
|
53
|
+
<WarningLevel>Level3</WarningLevel>
|
54
|
+
<Optimization>Disabled</Optimization>
|
55
|
+
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
56
|
+
<CompileAs>CompileAsC</CompileAs>
|
57
|
+
</ClCompile>
|
58
|
+
<Link>
|
59
|
+
<SubSystem>Console</SubSystem>
|
60
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
61
|
+
</Link>
|
62
|
+
</ItemDefinitionGroup>
|
63
|
+
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
64
|
+
<ClCompile>
|
65
|
+
<WarningLevel>Level3</WarningLevel>
|
66
|
+
<PrecompiledHeader>
|
67
|
+
</PrecompiledHeader>
|
68
|
+
<Optimization>MaxSpeed</Optimization>
|
69
|
+
<FunctionLevelLinking>true</FunctionLevelLinking>
|
70
|
+
<IntrinsicFunctions>true</IntrinsicFunctions>
|
71
|
+
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
72
|
+
</ClCompile>
|
73
|
+
<Link>
|
74
|
+
<SubSystem>Console</SubSystem>
|
75
|
+
<GenerateDebugInformation>true</GenerateDebugInformation>
|
76
|
+
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
77
|
+
<OptimizeReferences>true</OptimizeReferences>
|
78
|
+
</Link>
|
79
|
+
</ItemDefinitionGroup>
|
80
|
+
<ItemGroup>
|
81
|
+
<ClInclude Include="entry.h" />
|
82
|
+
<ClInclude Include="memory.h" />
|
83
|
+
<ClInclude Include="monitor.h" />
|
84
|
+
<ClInclude Include="queue.h" />
|
85
|
+
<ClInclude Include="rb_change.h" />
|
86
|
+
<ClInclude Include="rb_monitor.h" />
|
87
|
+
<ClInclude Include="utils.h" />
|
88
|
+
<ClInclude Include="wdm.h" />
|
89
|
+
</ItemGroup>
|
90
|
+
<ItemGroup>
|
91
|
+
<ClCompile Include="entry.c" />
|
92
|
+
<ClCompile Include="memory.c" />
|
93
|
+
<ClCompile Include="monitor.c" />
|
94
|
+
<ClCompile Include="queue.c" />
|
95
|
+
<ClCompile Include="rb_change.c" />
|
96
|
+
<ClCompile Include="rb_monitor.c" />
|
97
|
+
<ClCompile Include="utils.c" />
|
98
|
+
<ClCompile Include="wdm.c" />
|
99
|
+
</ItemGroup>
|
100
|
+
<ItemGroup>
|
101
|
+
<None Include="extconf.rb" />
|
102
|
+
</ItemGroup>
|
103
|
+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
104
|
+
<ImportGroup Label="ExtensionTargets">
|
105
|
+
</ImportGroup>
|
106
106
|
</Project>
|
data/ext/wdm/wdm.vcxproj.filters
CHANGED
@@ -1,74 +1,74 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
-
<ItemGroup>
|
4
|
-
<Filter Include="Source Files">
|
5
|
-
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
6
|
-
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
7
|
-
</Filter>
|
8
|
-
<Filter Include="Header Files">
|
9
|
-
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
10
|
-
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
11
|
-
</Filter>
|
12
|
-
<Filter Include="Resource Files">
|
13
|
-
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
14
|
-
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
15
|
-
</Filter>
|
16
|
-
</ItemGroup>
|
17
|
-
<ItemGroup>
|
18
|
-
<ClInclude Include="entry.h">
|
19
|
-
<Filter>Header Files</Filter>
|
20
|
-
</ClInclude>
|
21
|
-
<ClInclude Include="monitor.h">
|
22
|
-
<Filter>Header Files</Filter>
|
23
|
-
</ClInclude>
|
24
|
-
<ClInclude Include="queue.h">
|
25
|
-
<Filter>Header Files</Filter>
|
26
|
-
</ClInclude>
|
27
|
-
<ClInclude Include="wdm.h">
|
28
|
-
<Filter>Header Files</Filter>
|
29
|
-
</ClInclude>
|
30
|
-
<ClInclude Include="rb_change.h">
|
31
|
-
<Filter>Header Files</Filter>
|
32
|
-
</ClInclude>
|
33
|
-
<ClInclude Include="rb_monitor.h">
|
34
|
-
<Filter>Header Files</Filter>
|
35
|
-
</ClInclude>
|
36
|
-
<ClInclude Include="utils.h">
|
37
|
-
<Filter>Header Files</Filter>
|
38
|
-
</ClInclude>
|
39
|
-
<ClInclude Include="memory.h">
|
40
|
-
<Filter>Header Files</Filter>
|
41
|
-
</ClInclude>
|
42
|
-
</ItemGroup>
|
43
|
-
<ItemGroup>
|
44
|
-
<ClCompile Include="entry.c">
|
45
|
-
<Filter>Source Files</Filter>
|
46
|
-
</ClCompile>
|
47
|
-
<ClCompile Include="monitor.c">
|
48
|
-
<Filter>Source Files</Filter>
|
49
|
-
</ClCompile>
|
50
|
-
<ClCompile Include="queue.c">
|
51
|
-
<Filter>Source Files</Filter>
|
52
|
-
</ClCompile>
|
53
|
-
<ClCompile Include="wdm.c">
|
54
|
-
<Filter>Source Files</Filter>
|
55
|
-
</ClCompile>
|
56
|
-
<ClCompile Include="rb_change.c">
|
57
|
-
<Filter>Source Files</Filter>
|
58
|
-
</ClCompile>
|
59
|
-
<ClCompile Include="rb_monitor.c">
|
60
|
-
<Filter>Source Files</Filter>
|
61
|
-
</ClCompile>
|
62
|
-
<ClCompile Include="utils.c">
|
63
|
-
<Filter>Source Files</Filter>
|
64
|
-
</ClCompile>
|
65
|
-
<ClCompile Include="memory.c">
|
66
|
-
<Filter>Source Files</Filter>
|
67
|
-
</ClCompile>
|
68
|
-
</ItemGroup>
|
69
|
-
<ItemGroup>
|
70
|
-
<None Include="extconf.rb">
|
71
|
-
<Filter>Source Files</Filter>
|
72
|
-
</None>
|
73
|
-
</ItemGroup>
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
3
|
+
<ItemGroup>
|
4
|
+
<Filter Include="Source Files">
|
5
|
+
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
6
|
+
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
7
|
+
</Filter>
|
8
|
+
<Filter Include="Header Files">
|
9
|
+
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
10
|
+
<Extensions>h;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
11
|
+
</Filter>
|
12
|
+
<Filter Include="Resource Files">
|
13
|
+
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
14
|
+
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
15
|
+
</Filter>
|
16
|
+
</ItemGroup>
|
17
|
+
<ItemGroup>
|
18
|
+
<ClInclude Include="entry.h">
|
19
|
+
<Filter>Header Files</Filter>
|
20
|
+
</ClInclude>
|
21
|
+
<ClInclude Include="monitor.h">
|
22
|
+
<Filter>Header Files</Filter>
|
23
|
+
</ClInclude>
|
24
|
+
<ClInclude Include="queue.h">
|
25
|
+
<Filter>Header Files</Filter>
|
26
|
+
</ClInclude>
|
27
|
+
<ClInclude Include="wdm.h">
|
28
|
+
<Filter>Header Files</Filter>
|
29
|
+
</ClInclude>
|
30
|
+
<ClInclude Include="rb_change.h">
|
31
|
+
<Filter>Header Files</Filter>
|
32
|
+
</ClInclude>
|
33
|
+
<ClInclude Include="rb_monitor.h">
|
34
|
+
<Filter>Header Files</Filter>
|
35
|
+
</ClInclude>
|
36
|
+
<ClInclude Include="utils.h">
|
37
|
+
<Filter>Header Files</Filter>
|
38
|
+
</ClInclude>
|
39
|
+
<ClInclude Include="memory.h">
|
40
|
+
<Filter>Header Files</Filter>
|
41
|
+
</ClInclude>
|
42
|
+
</ItemGroup>
|
43
|
+
<ItemGroup>
|
44
|
+
<ClCompile Include="entry.c">
|
45
|
+
<Filter>Source Files</Filter>
|
46
|
+
</ClCompile>
|
47
|
+
<ClCompile Include="monitor.c">
|
48
|
+
<Filter>Source Files</Filter>
|
49
|
+
</ClCompile>
|
50
|
+
<ClCompile Include="queue.c">
|
51
|
+
<Filter>Source Files</Filter>
|
52
|
+
</ClCompile>
|
53
|
+
<ClCompile Include="wdm.c">
|
54
|
+
<Filter>Source Files</Filter>
|
55
|
+
</ClCompile>
|
56
|
+
<ClCompile Include="rb_change.c">
|
57
|
+
<Filter>Source Files</Filter>
|
58
|
+
</ClCompile>
|
59
|
+
<ClCompile Include="rb_monitor.c">
|
60
|
+
<Filter>Source Files</Filter>
|
61
|
+
</ClCompile>
|
62
|
+
<ClCompile Include="utils.c">
|
63
|
+
<Filter>Source Files</Filter>
|
64
|
+
</ClCompile>
|
65
|
+
<ClCompile Include="memory.c">
|
66
|
+
<Filter>Source Files</Filter>
|
67
|
+
</ClCompile>
|
68
|
+
</ItemGroup>
|
69
|
+
<ItemGroup>
|
70
|
+
<None Include="extconf.rb">
|
71
|
+
<Filter>Source Files</Filter>
|
72
|
+
</None>
|
73
|
+
</ItemGroup>
|
74
74
|
</Project>
|
data/lib/wdm.rb
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
begin
|
2
|
-
require 'wdm_ext'
|
3
|
-
rescue LoadError
|
4
|
-
raise LoadError.new(<<-EOS)
|
5
|
-
Can't load WDM!
|
6
|
-
|
7
|
-
WDM is not supported on your system. For a cross-platform alternative,
|
8
|
-
we recommend using Listen: http://github.com/guard/listen
|
9
|
-
EOS
|
1
|
+
begin
|
2
|
+
require 'wdm_ext'
|
3
|
+
rescue LoadError
|
4
|
+
raise LoadError.new(<<-EOS)
|
5
|
+
Can't load WDM!
|
6
|
+
|
7
|
+
WDM is not supported on your system. For a cross-platform alternative,
|
8
|
+
we recommend using Listen: http://github.com/guard/listen
|
9
|
+
EOS
|
10
10
|
end
|
metadata
CHANGED
@@ -1,126 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wdm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.1
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Maher Sallam
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: rake-compiler
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :development
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: rspec
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
33
|
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
40
|
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: guard-rspec
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - ">="
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - ">="
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: guard-shell
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - ">="
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: '0'
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
|
-
- -
|
66
|
+
- - ">="
|
76
67
|
- !ruby/object:Gem::Version
|
77
68
|
version: '0'
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
|
-
name:
|
70
|
+
name: pry
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
|
-
- -
|
73
|
+
- - ">="
|
84
74
|
- !ruby/object:Gem::Version
|
85
75
|
version: '0'
|
86
76
|
type: :development
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
|
-
- -
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
version: '0'
|
94
|
-
- !ruby/object:Gem::Dependency
|
95
|
-
name: rb-notifu
|
96
|
-
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
|
-
requirements:
|
99
|
-
- - ! '>='
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
version: '0'
|
102
|
-
type: :development
|
103
|
-
prerelease: false
|
104
|
-
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
|
-
requirements:
|
107
|
-
- - ! '>='
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
version: '0'
|
110
|
-
- !ruby/object:Gem::Dependency
|
111
|
-
name: pimpmychangelog
|
112
|
-
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
|
-
requirements:
|
115
|
-
- - ! '>='
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
|
-
requirements:
|
123
|
-
- - ! '>='
|
80
|
+
- - ">="
|
124
81
|
- !ruby/object:Gem::Version
|
125
82
|
version: '0'
|
126
83
|
description: Windows Directory Monitor (WDM) is a library which can be used to monitor
|
@@ -133,6 +90,8 @@ extensions:
|
|
133
90
|
- ext/wdm/extconf.rb
|
134
91
|
extra_rdoc_files: []
|
135
92
|
files:
|
93
|
+
- LICENSE
|
94
|
+
- README.md
|
136
95
|
- ext/wdm/entry.c
|
137
96
|
- ext/wdm/entry.h
|
138
97
|
- ext/wdm/extconf.rb
|
@@ -154,30 +113,27 @@ files:
|
|
154
113
|
- ext/wdm/wdm.vcxproj
|
155
114
|
- ext/wdm/wdm.vcxproj.filters
|
156
115
|
- lib/wdm.rb
|
157
|
-
- LICENSE
|
158
|
-
- README.md
|
159
116
|
homepage: https://github.com/Maher4Ever/wdm
|
160
117
|
licenses: []
|
118
|
+
metadata: {}
|
161
119
|
post_install_message:
|
162
120
|
rdoc_options: []
|
163
121
|
require_paths:
|
164
122
|
- lib
|
165
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
166
|
-
none: false
|
167
124
|
requirements:
|
168
|
-
- -
|
125
|
+
- - ">="
|
169
126
|
- !ruby/object:Gem::Version
|
170
127
|
version: 1.9.2
|
171
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
172
|
-
none: false
|
173
129
|
requirements:
|
174
|
-
- -
|
130
|
+
- - ">="
|
175
131
|
- !ruby/object:Gem::Version
|
176
132
|
version: '0'
|
177
133
|
requirements: []
|
178
134
|
rubyforge_project:
|
179
|
-
rubygems_version:
|
135
|
+
rubygems_version: 2.4.5
|
180
136
|
signing_key:
|
181
|
-
specification_version:
|
137
|
+
specification_version: 4
|
182
138
|
summary: Windows Directory Monitor (WDM) is a threaded directories monitor for Windows.
|
183
139
|
test_files: []
|