forked from djberg96/sys-filesystem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsys-filesystem.gemspec
More file actions
25 lines (21 loc) · 908 Bytes
/
sys-filesystem.gemspec
File metadata and controls
25 lines (21 loc) · 908 Bytes
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
require 'rubygems'
Gem::Specification.new do |spec|
spec.name = 'sys-filesystem'
spec.version = '1.1.9'
spec.author = 'Daniel J. Berger'
spec.email = 'djberg96@gmail.com'
spec.homepage = 'https://github.com/djberg96/sys-filesystem'
spec.summary = 'A Ruby interface for getting file system information.'
spec.test_file = 'test/test_sys_filesystem.rb'
spec.license = 'Artistic 2.0'
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.cert_chain = Dir['certs/*']
spec.extra_rdoc_files = ['CHANGES', 'README', 'MANIFEST']
spec.add_dependency('ffi')
spec.add_development_dependency('test-unit', '>= 2.5.0')
spec.add_development_dependency('rake')
spec.description = <<-EOF
The sys-filesystem library provides a cross-platform interface for
gathering filesystem information, such as disk space and mount point data.
EOF
end