win32-security 0.1.3 → 0.1.4
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 +23 -19
- data/MANIFEST +8 -8
- data/README +35 -35
- data/Rakefile +46 -46
- data/lib/win32/security.rb +67 -67
- data/lib/win32/security/ace.rb +39 -39
- data/lib/win32/security/acl.rb +148 -148
- data/lib/win32/security/sid.rb +388 -381
- data/test/test_acl.rb +67 -67
- data/test/test_security.rb +34 -34
- data/test/test_sid.rb +141 -137
- data/win32-security.gemspec +27 -27
- metadata +2 -2
data/win32-security.gemspec
CHANGED
@@ -1,27 +1,27 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = 'win32-security'
|
5
|
-
spec.version = '0.1.
|
6
|
-
spec.authors = ['Daniel J. Berger', 'Park Heesob']
|
7
|
-
spec.license = 'Artistic 2.0'
|
8
|
-
spec.email = 'djberg96@gmail.com'
|
9
|
-
spec.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
10
|
-
spec.summary = 'A library for dealing with aspects of Windows security.'
|
11
|
-
spec.test_files = Dir['test/*.rb']
|
12
|
-
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
-
|
14
|
-
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
15
|
-
spec.rubyforge_project = 'win32utils'
|
16
|
-
|
17
|
-
spec.add_dependency('windows-pr', '>= 1.2.2')
|
18
|
-
|
19
|
-
spec.add_development_dependency('test-unit', '>= 2.5.0')
|
20
|
-
spec.add_development_dependency('sys-admin', '>= 1.5.3')
|
21
|
-
|
22
|
-
spec.description = <<-EOF
|
23
|
-
The win32-security library provides an interface for dealing with
|
24
|
-
security related aspects of MS Windows. At the moment it provides an
|
25
|
-
interface for inspecting or creating SID's.
|
26
|
-
EOF
|
27
|
-
end
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'win32-security'
|
5
|
+
spec.version = '0.1.4'
|
6
|
+
spec.authors = ['Daniel J. Berger', 'Park Heesob']
|
7
|
+
spec.license = 'Artistic 2.0'
|
8
|
+
spec.email = 'djberg96@gmail.com'
|
9
|
+
spec.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
10
|
+
spec.summary = 'A library for dealing with aspects of Windows security.'
|
11
|
+
spec.test_files = Dir['test/*.rb']
|
12
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
13
|
+
|
14
|
+
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
|
15
|
+
spec.rubyforge_project = 'win32utils'
|
16
|
+
|
17
|
+
spec.add_dependency('windows-pr', '>= 1.2.2')
|
18
|
+
|
19
|
+
spec.add_development_dependency('test-unit', '>= 2.5.0')
|
20
|
+
spec.add_development_dependency('sys-admin', '>= 1.5.3')
|
21
|
+
|
22
|
+
spec.description = <<-EOF
|
23
|
+
The win32-security library provides an interface for dealing with
|
24
|
+
security related aspects of MS Windows. At the moment it provides an
|
25
|
+
interface for inspecting or creating SID's.
|
26
|
+
EOF
|
27
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: win32-security
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-
|
13
|
+
date: 2012-10-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: windows-pr
|