forked from chef/win32-security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
50 lines (42 loc) · 1.07 KB
/
Copy pathRakefile
File metadata and controls
50 lines (42 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require 'rake'
require 'rake/clean'
require 'rake/testtask'
require 'rbconfig'
CLEAN.include('**/*.gem', '**/*.rbc')
namespace :gem do
desc "Create the win32-security gem"
task :create => [:clean] do
spec = eval(IO.read('win32-security.gemspec'))
Gem::Builder.new(spec).build
end
desc "Install the win32-security gem"
task :install => [:create] do
ruby 'win32-security.gemspec'
file = Dir["*.gem"].first
sh "gem install #{file}"
end
end
namespace :test do
Rake::TestTask.new(:security) do |t|
t.verbose = true
t.warning = true
t.test_files = Dir['test/test_security.rb']
end
Rake::TestTask.new(:acl) do |t|
t.verbose = true
t.warning = true
t.test_files = Dir['test/test_acl.rb']
end
Rake::TestTask.new(:sid) do |t|
t.verbose = true
t.warning = true
t.test_files = Dir['test/test_sid.rb']
end
# ACL class isn't ready yet
Rake::TestTask.new(:all) do |t|
t.verbose = true
t.warning = true
t.test_files = Dir['test/test_sid.rb', 'test/test_security.rb']
end
end
task :default => 'test:all'