forked from cosmo0920/windows-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindows-api.gemspec
More file actions
27 lines (23 loc) · 1.02 KB
/
windows-api.gemspec
File metadata and controls
27 lines (23 loc) · 1.02 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
require 'rubygems'
Gem::Specification.new do |gem|
gem.name = 'windows-api'
gem.version = '0.4.0'
gem.author = 'Daniel J. Berger'
gem.license = 'Artistic 2.0'
gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
gem.summary = 'An easier way to create methods using Win32::API'
gem.test_files = Dir['test/test*.rb']
gem.has_rdoc = true
gem.files = Dir['**/*'].reject{ |f| f.include?('CVS') }
gem.rubyforge_project = 'win32utils'
gem.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST']
gem.add_dependency('win32-api', '>= 1.4.5')
gem.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