win32-api 1.4.2 → 1.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/win32-api.gemspec ADDED
@@ -0,0 +1,33 @@
1
+ require "rubygems"
2
+
3
+ spec = Gem::Specification.new do |gem|
4
+ gem.name = 'win32-api'
5
+ gem.version = '1.4.3'
6
+ gem.authors = ['Daniel J. Berger', 'Park Heesob']
7
+ gem.email = 'djberg96@gmail.com'
8
+ gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
9
+ gem.platform = Gem::Platform::RUBY
10
+ gem.summary = 'A superior replacement for Win32API'
11
+ gem.has_rdoc = true
12
+ gem.test_files = Dir['test/test*']
13
+ gem.extensions = ['ext/extconf.rb']
14
+ gem.files = Dir['**/*'].delete_if{ |f| f.include?('CVS') || f.include?('lib') }
15
+ gem.license = 'Artistic 2.0'
16
+
17
+ gem.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST', 'ext/win32/api.c']
18
+ gem.rubyforge_project = 'win32utils'
19
+ gem.required_ruby_version = '>= 1.8.2'
20
+
21
+ gem.add_dependency('test-unit', '>= 2.0.2')
22
+
23
+ gem.description = <<-EOF
24
+ The Win32::API library is meant as a replacement for the Win32API
25
+ library that ships as part of the standard library. It contains several
26
+ advantages over Win32API, including callback support, raw function
27
+ pointers, an additional string type, and more.
28
+ EOF
29
+ end
30
+
31
+ if $0 == __FILE__
32
+ Gem::Builder.new(spec).build
33
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: win32-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel J. Berger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-06-23 00:00:00 +09:00
13
+ date: 2009-06-23 00:00:00 -06:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -35,18 +35,20 @@ extra_rdoc_files:
35
35
  - MANIFEST
36
36
  - ext/win32/api.c
37
37
  files:
38
+ - CHANGES
38
39
  - ext/extconf.rb
39
40
  - ext/win32/api.c
41
+ - MANIFEST
42
+ - Rakefile
43
+ - README
40
44
  - test/test_win32_api.rb
41
45
  - test/test_win32_api_callback.rb
42
46
  - test/test_win32_api_function.rb
43
- - README
44
- - CHANGES
45
- - MANIFEST
47
+ - win32-api.gemspec
46
48
  has_rdoc: true
47
49
  homepage: http://www.rubyforge.org/projects/win32utils
48
- licenses: []
49
-
50
+ licenses:
51
+ - Artistic 2.0
50
52
  post_install_message:
51
53
  rdoc_options: []
52
54