win32-api 1.4.5-x86-mswin32-60 → 1.4.6-x86-mswin32-60

Sign up to get free protection for your applications and to get access to all the features.
data/win32-api.gemspec CHANGED
@@ -1,31 +1,29 @@
1
- require 'rubygems'
2
-
3
- spec = Gem::Specification.new do |gem|
4
- gem.name = 'win32-api'
5
- gem.version = '1.4.5'
6
- gem.authors = ['Daniel J. Berger', 'Park Heesob']
7
- gem.license = 'Artistic 2.0'
8
- gem.email = 'djberg96@gmail.com'
9
- gem.homepage = 'http://www.rubyforge.org/projects/win32utils'
10
- gem.platform = Gem::Platform::RUBY
11
- gem.summary = 'A superior replacement for Win32API'
12
- gem.has_rdoc = true
13
- gem.test_files = Dir['test/test*']
14
- gem.extensions = ['ext/extconf.rb']
15
- gem.files = Dir['**/*'].reject{ |f| f.include?('CVS') || f.include?('lib') }
16
-
17
- gem.rubyforge_project = 'win32utils'
18
- gem.required_ruby_version = '>= 1.8.2'
19
- gem.extra_rdoc_files = ['README', 'CHANGES', 'MANIFEST', 'ext/win32/api.c']
20
-
21
- gem.add_development_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
- 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.5
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: 2009-08-24 00:00:00 -06:00
13
+ date: 2010-02-12 00:00:00 -07:00
14
14
  default_executable:
15
- dependencies: []
16
-
17
- 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"
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
- - ext/extconf.rb
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')