-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwin32-file-security.gemspec
28 lines (24 loc) · 1.05 KB
/
win32-file-security.gemspec
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
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'win32-file-security'
spec.version = '1.0.10'
spec.authors = ['Daniel J. Berger', 'Park Heesob']
spec.license = 'Artistic 2.0'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'http://github.com/djberg96/win32-file-security'
spec.summary = 'File security methods for the File class on MS Windows'
spec.test_files = Dir['test/test*']
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.cert_chain = Dir['certs/djberg96_pub.pem']
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
spec.add_dependency('ffi')
spec.add_dependency('ffi-win32-extensions')
spec.add_development_dependency('test-unit')
spec.add_development_dependency('win32-security')
spec.add_development_dependency('sys-admin')
spec.description = <<-EOF
The win32-file-security library adds security related methods to the
core File class for MS Windows. This includes the ability to get or
set permissions, as well as encrypt or decrypt files.
EOF
end