win32-api 1.4.5-x86-mswin32-60 → 1.4.6-x86-mswin32-60
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/CHANGES +132 -125
- data/MANIFEST +9 -9
- data/README +101 -103
- data/Rakefile +105 -120
- data/ext/win32/api.c +946 -948
- data/lib/win32/api.so +0 -0
- data/test/test_win32_api.rb +140 -140
- data/test/test_win32_api_callback.rb +74 -74
- data/test/test_win32_api_function.rb +66 -66
- data/win32-api.gemspec +29 -31
- metadata +16 -8
- data/ext/extconf.rb +0 -11
data/win32-api.gemspec
CHANGED
@@ -1,31 +1,29 @@
|
|
1
|
-
require 'rubygems'
|
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
|
-
|
29
|
-
end
|
30
|
-
|
31
|
-
Gem::Builder.new(spec).build
|
1
|
+
require 'rubygems'
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'win32-api'
|
5
|
+
spec.version = '1.4.6'
|
6
|
+
spec.authors = ['Daniel J. Berger', 'Park Heesob']
|
7
|
+
spec.license = 'Artistic 2.0'
|
8
|
+
spec.email = 'djberg96@gmail.com'
|
9
|
+
spec.homepage = 'http://www.rubyforge.org/projects/win32utils'
|
10
|
+
spec.platform = Gem::Platform::RUBY
|
11
|
+
spec.summary = 'A superior replacement for Win32API'
|
12
|
+
spec.has_rdoc = true
|
13
|
+
spec.test_files = Dir['test/test*']
|
14
|
+
spec.extensions = ['ext/extconf.rb']
|
15
|
+
spec.files = Dir['**/*'].reject{ |f| f.include?('git') }
|
16
|
+
|
17
|
+
spec.rubyforge_project = 'win32utils'
|
18
|
+
spec.required_ruby_version = '>= 1.8.2'
|
19
|
+
spec.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST', 'ext/win32/api.c']
|
20
|
+
|
21
|
+
spec.add_development_dependency('test-unit', '>= 2.0.6')
|
22
|
+
|
23
|
+
spec.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
|
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.
|
4
|
+
version: 1.4.6
|
5
5
|
platform: x86-mswin32-60
|
6
6
|
authors:
|
7
7
|
- Daniel J. Berger
|
@@ -10,11 +10,20 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2010-02-12 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
|
17
|
-
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: test-unit
|
18
|
+
type: :development
|
19
|
+
version_requirement:
|
20
|
+
version_requirements: !ruby/object:Gem::Requirement
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.0.6
|
25
|
+
version:
|
26
|
+
description: " The Win32::API library is meant as a replacement for the Win32API\n library that ships as part of the standard library. It contains several\n advantages over Win32API, including callback support, raw function\n pointers, an additional string type, and more.\n"
|
18
27
|
email: djberg96@gmail.com
|
19
28
|
executables: []
|
20
29
|
|
@@ -27,16 +36,15 @@ extra_rdoc_files:
|
|
27
36
|
- ext/win32/api.c
|
28
37
|
files:
|
29
38
|
- CHANGES
|
39
|
+
- lib/win32/api.so
|
30
40
|
- MANIFEST
|
31
41
|
- Rakefile
|
32
42
|
- README
|
33
|
-
- win32-api.gemspec
|
34
43
|
- test/test_win32_api.rb
|
35
44
|
- test/test_win32_api_callback.rb
|
36
45
|
- test/test_win32_api_function.rb
|
37
|
-
-
|
46
|
+
- win32-api.gemspec
|
38
47
|
- ext/win32/api.c
|
39
|
-
- lib/win32/api.so
|
40
48
|
has_rdoc: true
|
41
49
|
homepage: http://www.rubyforge.org/projects/win32utils
|
42
50
|
licenses:
|
data/ext/extconf.rb
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
##########################################################################
|
2
|
-
# extconf.rb
|
3
|
-
#
|
4
|
-
# The Windows::API binary should be built using the Rake task, i.e.
|
5
|
-
# 'rake build' or 'rake install'.
|
6
|
-
##########################################################################
|
7
|
-
require 'mkmf'
|
8
|
-
|
9
|
-
have_func('strncpy_s')
|
10
|
-
|
11
|
-
create_makefile('win32/api', 'win32')
|