-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwdm.gemspec
20 lines (17 loc) · 979 Bytes
/
wdm.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ['Maher Sallam', 'Lars Kanis']
gem.email = ['maher@sallam.me', 'lars@greiz-reinsdorf.de']
gem.description = %q{Windows Directory Monitor (WDM) is a library which can be used to monitor directories for changes. It's mostly implemented in C and uses the Win32 API for a better performance.}
gem.summary = %q{Windows Directory Monitor (WDM) is a threaded directories monitor for Windows.}
gem.license = 'MIT'
gem.homepage = "/~https://github.com/Maher4Ever/wdm"
gem.files = `git ls-files -- ext/* lib/*`.split($\) + %w[LICENSE README.md]
gem.extensions = ['ext/wdm/extconf.rb']
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'wdm'
gem.require_paths = ['lib']
gem.version = '0.2.0'
gem.required_ruby_version = '>= 2.5'
end