Sha256: a2af5c7f88a4b59d541cbc06712be60de8ca706bad6fecce68f4e9e80fbca028
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
require 'rubygems' Gem::Specification.new do |spec| spec.name = 'win32-api' spec.version = '1.9.1' spec.authors = ['Daniel J. Berger', 'Park Heesob', 'Hiroshi Hatake'] spec.license = 'Artistic-2.0' spec.email = 'djberg96@gmail.com' spec.homepage = 'http://github.com/djberg96/win32-api' spec.summary = 'A superior replacement for Win32API' spec.test_files = Dir['test/test*'] spec.extensions = ['ext/extconf.rb'] spec.files = Dir['**/*'].reject{ |f| f.include?('git') } spec.required_ruby_version = '>= 1.8.2' spec.extra_rdoc_files = ['CHANGES', 'MANIFEST', 'ext/win32/api.c'] spec.add_development_dependency('test-unit', '>= 2.5.0') spec.add_development_dependency('rake') spec.description = <<-EOF The Win32::API library is meant as a replacement for the Win32API library that ships as part of the standard library. It contains several advantages over Win32API, including callback support, raw function pointers, an additional string type, and more. EOF end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
win32-api-1.9.1-universal-mingw32 | win32-api.gemspec |