ffi 1.5.0.pre1 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/ffi.gemspec +1 -1
- data/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- metadata +13 -25
data/ffi.gemspec
CHANGED
@@ -0,0 +1,27 @@
|
|
1
|
+
rbx.platform.typedef.size_t = ulong_long
|
2
|
+
rbx.platform.typedef.ssize_t = long_long
|
3
|
+
rbx.platform.typedef.intptr_t = long_long
|
4
|
+
rbx.platform.typedef.uintptr_t = ulong_long
|
5
|
+
rbx.platform.typedef.ptrdiff_t = long_long
|
6
|
+
rbx.platform.typedef.wchar_t = ushort
|
7
|
+
rbx.platform.typedef.wint_t = ushort
|
8
|
+
rbx.platform.typedef.wctype_t = ushort
|
9
|
+
rbx.platform.typedef.errno_t = int
|
10
|
+
rbx.platform.typedef.__time32_t = long
|
11
|
+
rbx.platform.typedef.__time64_t = long_long
|
12
|
+
rbx.platform.typedef.time_t = long_long
|
13
|
+
rbx.platform.typedef._ino_t = ushort
|
14
|
+
rbx.platform.typedef.ino_t = ushort
|
15
|
+
rbx.platform.typedef._dev_t = uint
|
16
|
+
rbx.platform.typedef.dev_t = uint
|
17
|
+
rbx.platform.typedef._pid_t = long_long
|
18
|
+
rbx.platform.typedef.pid_t = long_long
|
19
|
+
rbx.platform.typedef._mode_t = ushort
|
20
|
+
rbx.platform.typedef.mode_t = ushort
|
21
|
+
rbx.platform.typedef._off_t = long
|
22
|
+
rbx.platform.typedef.off32_t = long
|
23
|
+
rbx.platform.typedef._off64_t = long_long
|
24
|
+
rbx.platform.typedef.off64_t = long_long
|
25
|
+
rbx.platform.typedef.off_t = long_long
|
26
|
+
rbx.platform.typedef.useconds_t = uint
|
27
|
+
rbx.platform.typedef._sigset_t = ulong_long
|
metadata
CHANGED
@@ -1,15 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease: 6
|
4
|
+
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 1
|
8
7
|
- 5
|
9
8
|
- 0
|
10
|
-
|
11
|
-
- 1
|
12
|
-
version: 1.5.0.pre1
|
9
|
+
version: 1.5.0
|
13
10
|
platform: ruby
|
14
11
|
authors:
|
15
12
|
- Wayne Meissner
|
@@ -17,51 +14,46 @@ autorequire:
|
|
17
14
|
bindir: bin
|
18
15
|
cert_chain: []
|
19
16
|
|
20
|
-
date: 2013-03-
|
17
|
+
date: 2013-03-21 00:00:00 +10:00
|
18
|
+
default_executable:
|
21
19
|
dependencies:
|
22
20
|
- !ruby/object:Gem::Dependency
|
21
|
+
name: rake
|
23
22
|
prerelease: false
|
24
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
24
|
requirements:
|
27
25
|
- - ">="
|
28
26
|
- !ruby/object:Gem::Version
|
29
|
-
hash: 3
|
30
27
|
segments:
|
31
28
|
- 0
|
32
29
|
version: "0"
|
33
30
|
type: :development
|
34
|
-
name: rake
|
35
31
|
version_requirements: *id001
|
36
32
|
- !ruby/object:Gem::Dependency
|
33
|
+
name: rake-compiler
|
37
34
|
prerelease: false
|
38
35
|
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
-
none: false
|
40
36
|
requirements:
|
41
37
|
- - ">="
|
42
38
|
- !ruby/object:Gem::Version
|
43
|
-
hash: 7
|
44
39
|
segments:
|
45
40
|
- 0
|
46
41
|
- 6
|
47
42
|
- 0
|
48
43
|
version: 0.6.0
|
49
44
|
type: :development
|
50
|
-
name: rake-compiler
|
51
45
|
version_requirements: *id002
|
52
46
|
- !ruby/object:Gem::Dependency
|
47
|
+
name: rspec
|
53
48
|
prerelease: false
|
54
49
|
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
-
none: false
|
56
50
|
requirements:
|
57
51
|
- - ">="
|
58
52
|
- !ruby/object:Gem::Version
|
59
|
-
hash: 3
|
60
53
|
segments:
|
61
54
|
- 0
|
62
55
|
version: "0"
|
63
56
|
type: :development
|
64
|
-
name: rspec
|
65
57
|
version_requirements: *id003
|
66
58
|
description: Ruby FFI library
|
67
59
|
email: wmeissner@gmail.com
|
@@ -445,6 +437,7 @@ files:
|
|
445
437
|
- lib/ffi/platform/x86_64-netbsd/types.conf
|
446
438
|
- lib/ffi/platform/x86_64-openbsd/types.conf
|
447
439
|
- lib/ffi/platform/x86_64-solaris/types.conf
|
440
|
+
- lib/ffi/platform/x86_64-windows/types.conf
|
448
441
|
- lib/ffi/platform.rb
|
449
442
|
- lib/ffi/pointer.rb
|
450
443
|
- lib/ffi/struct.rb
|
@@ -506,6 +499,7 @@ files:
|
|
506
499
|
- libtest/StructTest.c
|
507
500
|
- libtest/UnionTest.c
|
508
501
|
- libtest/VariadicTest.c
|
502
|
+
has_rdoc: true
|
509
503
|
homepage: http://wiki.github.com/ffi/ffi
|
510
504
|
licenses:
|
511
505
|
- LGPL-3
|
@@ -516,31 +510,25 @@ require_paths:
|
|
516
510
|
- lib
|
517
511
|
- ext/ffi_c
|
518
512
|
required_ruby_version: !ruby/object:Gem::Requirement
|
519
|
-
none: false
|
520
513
|
requirements:
|
521
514
|
- - ">="
|
522
515
|
- !ruby/object:Gem::Version
|
523
|
-
hash: 57
|
524
516
|
segments:
|
525
517
|
- 1
|
526
518
|
- 8
|
527
519
|
- 7
|
528
520
|
version: 1.8.7
|
529
521
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
530
|
-
none: false
|
531
522
|
requirements:
|
532
|
-
- - "
|
523
|
+
- - ">="
|
533
524
|
- !ruby/object:Gem::Version
|
534
|
-
hash: 25
|
535
525
|
segments:
|
536
|
-
-
|
537
|
-
|
538
|
-
- 1
|
539
|
-
version: 1.3.1
|
526
|
+
- 0
|
527
|
+
version: "0"
|
540
528
|
requirements: []
|
541
529
|
|
542
530
|
rubyforge_project:
|
543
|
-
rubygems_version: 1.
|
531
|
+
rubygems_version: 1.3.6
|
544
532
|
signing_key:
|
545
533
|
specification_version: 3
|
546
534
|
summary: Ruby FFI
|