windows-pr 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ = 1.1.2 - 6-Nov-2010
2
+ * Fixed a job security flag name.
3
+
1
4
  = 1.1.1 - 6-Nov-2010
2
5
  * Added some security flags for Job objects to the Windows::Process module.
3
6
  * Added namespace functions to the Windows::Synchronize module.
@@ -100,7 +100,7 @@ module Windows
100
100
 
101
101
  JOB_OBJECT_ASSIGN_PROCESS = 0x0001
102
102
  JOB_OBJECT_SET_ATTRIBUTES = 0x0002
103
- JOB_OBJECT_OBJECT_QUERY = 0x0004
103
+ JOB_OBJECT_QUERY = 0x0004
104
104
  JOB_OBJECT_TERMINATE = 0x0008
105
105
  JOB_OBJECT_SET_SECURITY_ATTRIBUTES = 0x0010
106
106
  JOB_OBJECT_ALL_ACCESS = 0x1F001F
data/windows-pr.gemspec CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'windows-pr'
5
- spec.version = '1.1.1'
5
+ spec.version = '1.1.2'
6
6
  spec.license = 'Artistic 2.0'
7
7
  spec.authors = ['Daniel J. Berger', 'Park Heesob']
8
8
  spec.email = 'djberg96@gmail.com'
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: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Daniel J. Berger