-
Notifications
You must be signed in to change notification settings - Fork 5
/
windows-api.gemspec
28 lines (24 loc) · 1.14 KB
/
windows-api.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 = 'windows-api'
spec.version = '0.4.5'
spec.authors = ['Daniel J. Berger', 'Hiroshi Hatake']
spec.license = 'Artistic 2.0'
spec.email = ['djberg96@gmail.com', "cosmo0920.oucc@gmail.com"]
spec.homepage = 'https://github.com/djberg96/windows-api'
spec.summary = 'An easier way to create methods using Win32::API'
spec.test_files = Dir['test/test*.rb']
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
spec.extra_rdoc_files = ['README.rdoc', 'CHANGES', 'MANIFEST']
spec.add_dependency('win32-api', '>= 1.4.5')
spec.add_development_dependency('test-unit')
spec.add_development_dependency('rake')
spec.add_development_dependency('windows-pr','~>1.2.4')
spec.description = <<-EOF
The windows-api library provides features over and above the basic
interface provided by the win32-api library. Features included automatic
constant generation, automatic defintion of ANSI and Unicode methods,
special handling of functions that return a boolean value, and the
ability to use native Windows type declarations.
EOF
end