ffi 1.9.0 → 1.9.3
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.
- checksums.yaml +15 -0
- data/COPYING +48 -673
- data/LICENSE +21 -11
- data/README.md +6 -6
- data/ext/ffi_c/AbstractMemory.c +23 -12
- data/ext/ffi_c/AbstractMemory.h +21 -12
- data/ext/ffi_c/ArrayType.c +21 -12
- data/ext/ffi_c/ArrayType.h +21 -12
- data/ext/ffi_c/Buffer.c +22 -12
- data/ext/ffi_c/Call.c +21 -12
- data/ext/ffi_c/Call.h +21 -12
- data/ext/ffi_c/ClosurePool.c +21 -12
- data/ext/ffi_c/ClosurePool.h +21 -12
- data/ext/ffi_c/DynamicLibrary.c +21 -12
- data/ext/ffi_c/DynamicLibrary.h +21 -12
- data/ext/ffi_c/Function.c +21 -12
- data/ext/ffi_c/Function.h +21 -12
- data/ext/ffi_c/FunctionInfo.c +22 -12
- data/ext/ffi_c/LastError.c +22 -12
- data/ext/ffi_c/LastError.h +21 -12
- data/ext/ffi_c/LongDouble.h +21 -12
- data/ext/ffi_c/MappedType.c +21 -12
- data/ext/ffi_c/MappedType.h +21 -12
- data/ext/ffi_c/MemoryPointer.c +22 -13
- data/ext/ffi_c/MemoryPointer.h +21 -12
- data/ext/ffi_c/MethodHandle.c +21 -12
- data/ext/ffi_c/MethodHandle.h +21 -12
- data/ext/ffi_c/Platform.c +21 -12
- data/ext/ffi_c/Platform.h +21 -12
- data/ext/ffi_c/Pointer.c +21 -12
- data/ext/ffi_c/Pointer.h +21 -12
- data/ext/ffi_c/Struct.c +22 -13
- data/ext/ffi_c/Struct.h +21 -12
- data/ext/ffi_c/StructByValue.c +21 -12
- data/ext/ffi_c/StructByValue.h +21 -12
- data/ext/ffi_c/StructLayout.c +21 -12
- data/ext/ffi_c/Thread.c +21 -12
- data/ext/ffi_c/Thread.h +21 -12
- data/ext/ffi_c/Type.c +23 -12
- data/ext/ffi_c/Type.h +24 -9
- data/ext/ffi_c/Types.c +21 -12
- data/ext/ffi_c/Types.h +21 -12
- data/ext/ffi_c/Variadic.c +22 -12
- data/ext/ffi_c/compat.h +21 -12
- data/ext/ffi_c/ffi.c +22 -12
- data/ext/ffi_c/rbffi.h +21 -12
- data/ffi.gemspec +2 -2
- data/lib/ffi/autopointer.rb +21 -11
- data/lib/ffi/enum.rb +22 -11
- data/lib/ffi/errno.rb +21 -11
- data/lib/ffi/ffi.rb +22 -11
- data/lib/ffi/io.rb +21 -11
- data/lib/ffi/library.rb +22 -12
- data/lib/ffi/managedstruct.rb +29 -0
- data/lib/ffi/platform.rb +20 -11
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/pointer.rb +22 -10
- data/lib/ffi/struct.rb +22 -11
- data/lib/ffi/struct_layout_builder.rb +22 -11
- data/lib/ffi/types.rb +23 -10
- data/lib/ffi/union.rb +23 -12
- data/lib/ffi/variadic.rb +24 -11
- data/lib/ffi/version.rb +1 -1
- data/libtest/BoolTest.c +4 -1
- data/libtest/StructTest.c +4 -1
- metadata +72 -101
- data/COPYING.LESSER +0 -165
- data/History.txt +0 -1
- data/ext/ffi_c/cruby-ext.iml +0 -12
- data/gen/log +0 -1
- data/lib/ffi/ffi.iml +0 -11
- data/spec/ffi/spec.iml +0 -12
@@ -1,21 +1,32 @@
|
|
1
1
|
#
|
2
2
|
# Copyright (C) 2008-2010 Wayne Meissner
|
3
3
|
#
|
4
|
-
# All rights reserved.
|
5
|
-
#
|
6
4
|
# This file is part of ruby-ffi.
|
7
5
|
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
6
|
+
# All rights reserved.
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions are met:
|
11
10
|
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
11
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer.
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
15
|
+
# and/or other materials provided with the distribution.
|
16
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
17
|
+
# may be used to endorse or promote products derived from this software
|
18
|
+
# without specific prior written permission.
|
16
19
|
#
|
17
|
-
#
|
18
|
-
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
24
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
19
30
|
#
|
20
31
|
|
21
32
|
module FFI
|
data/lib/ffi/types.rb
CHANGED
@@ -1,20 +1,33 @@
|
|
1
1
|
#
|
2
2
|
# Copyright (C) 2008-2010 Wayne Meissner
|
3
|
-
#
|
3
|
+
# Copyright (c) 2007, 2008 Evan Phoenix
|
4
4
|
#
|
5
5
|
# This file is part of ruby-ffi.
|
6
6
|
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
7
|
+
# All rights reserved.
|
8
|
+
#
|
9
|
+
# Redistribution and use in source and binary forms, with or without
|
10
|
+
# modification, are permitted provided that the following conditions are met:
|
10
11
|
#
|
11
|
-
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
12
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
13
|
+
# list of conditions and the following disclaimer.
|
14
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
15
|
+
# this list of conditions and the following disclaimer in the documentation
|
16
|
+
# and/or other materials provided with the distribution.
|
17
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
18
|
+
# may be used to endorse or promote products derived from this software
|
19
|
+
# without specific prior written permission.
|
15
20
|
#
|
16
|
-
#
|
17
|
-
#
|
21
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
22
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
23
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
24
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
25
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
26
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
27
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
28
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
29
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
30
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
18
31
|
#
|
19
32
|
|
20
33
|
# see {file:README}
|
data/lib/ffi/union.rb
CHANGED
@@ -1,21 +1,32 @@
|
|
1
1
|
#
|
2
|
-
# Copyright (C)
|
3
|
-
#
|
4
|
-
# All rights reserved.
|
2
|
+
# Copyright (C) 2009 Andrea Fazzi <andrea.fazzi@alcacoop.it>
|
5
3
|
#
|
6
4
|
# This file is part of ruby-ffi.
|
7
5
|
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
6
|
+
# All rights reserved.
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions are met:
|
11
10
|
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
11
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer.
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
15
|
+
# and/or other materials provided with the distribution.
|
16
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
17
|
+
# may be used to endorse or promote products derived from this software
|
18
|
+
# without specific prior written permission.
|
16
19
|
#
|
17
|
-
#
|
18
|
-
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
24
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
19
30
|
#
|
20
31
|
|
21
32
|
require 'ffi/struct'
|
data/lib/ffi/variadic.rb
CHANGED
@@ -1,21 +1,34 @@
|
|
1
1
|
#
|
2
2
|
# Copyright (C) 2008, 2009 Wayne Meissner
|
3
3
|
# Copyright (C) 2009 Luc Heinrich
|
4
|
-
# All rights reserved.
|
5
4
|
#
|
6
5
|
# This file is part of ruby-ffi.
|
7
6
|
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
7
|
+
# All rights reserved.
|
8
|
+
#
|
9
|
+
# Redistribution and use in source and binary forms, with or without
|
10
|
+
# modification, are permitted provided that the following conditions are met:
|
11
|
+
#
|
12
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
13
|
+
# list of conditions and the following disclaimer.
|
14
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
15
|
+
# this list of conditions and the following disclaimer in the documentation
|
16
|
+
# and/or other materials provided with the distribution.
|
17
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
18
|
+
# may be used to endorse or promote products derived from this software
|
19
|
+
# without specific prior written permission.
|
11
20
|
#
|
12
|
-
#
|
13
|
-
# ANY
|
14
|
-
# FITNESS FOR A PARTICULAR PURPOSE
|
15
|
-
#
|
21
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
22
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
23
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
24
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
25
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
26
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
27
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
28
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
29
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
30
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
16
31
|
#
|
17
|
-
# You should have received a copy of the GNU Lesser General Public License
|
18
|
-
# version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
|
19
32
|
|
20
33
|
module FFI
|
21
34
|
class VariadicInvoker
|
@@ -62,4 +75,4 @@ module FFI
|
|
62
75
|
invoker
|
63
76
|
end
|
64
77
|
end
|
65
|
-
end
|
78
|
+
end
|
data/lib/ffi/version.rb
CHANGED
data/libtest/BoolTest.c
CHANGED
data/libtest/StructTest.c
CHANGED
metadata
CHANGED
@@ -1,95 +1,81 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 9
|
9
|
-
- 0
|
10
|
-
version: 1.9.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.9.3
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Wayne Meissner
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2013-10-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
22
14
|
name: rake
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
hash: 3
|
30
|
-
segments:
|
31
|
-
- 0
|
32
|
-
version: "0"
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ! '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
33
20
|
type: :development
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: rake-compiler
|
37
21
|
prerelease: false
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ! '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake-compiler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
48
33
|
version: 0.6.0
|
49
34
|
type: :development
|
50
|
-
version_requirements: *id002
|
51
|
-
- !ruby/object:Gem::Dependency
|
52
|
-
name: rspec
|
53
35
|
prerelease: false
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ! '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.6.0
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
63
48
|
type: :development
|
64
|
-
version_requirements: *id003
|
65
|
-
- !ruby/object:Gem::Dependency
|
66
|
-
name: rubygems-tasks
|
67
49
|
prerelease: false
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ! '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rubygems-tasks
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
77
62
|
type: :development
|
78
|
-
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ! '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
79
69
|
description: Ruby FFI library
|
80
70
|
email: wmeissner@gmail.com
|
81
71
|
executables: []
|
82
|
-
|
83
|
-
extensions:
|
72
|
+
extensions:
|
84
73
|
- ext/ffi_c/extconf.rb
|
85
74
|
extra_rdoc_files: []
|
86
|
-
|
87
|
-
files:
|
75
|
+
files:
|
88
76
|
- ffi.gemspec
|
89
|
-
- History.txt
|
90
77
|
- LICENSE
|
91
78
|
- COPYING
|
92
|
-
- COPYING.LESSER
|
93
79
|
- README.md
|
94
80
|
- Rakefile
|
95
81
|
- ext/ffi_c/AbstractMemory.c
|
@@ -102,7 +88,6 @@ files:
|
|
102
88
|
- ext/ffi_c/ClosurePool.c
|
103
89
|
- ext/ffi_c/ClosurePool.h
|
104
90
|
- ext/ffi_c/compat.h
|
105
|
-
- ext/ffi_c/cruby-ext.iml
|
106
91
|
- ext/ffi_c/DataConverter.c
|
107
92
|
- ext/ffi_c/DynamicLibrary.c
|
108
93
|
- ext/ffi_c/DynamicLibrary.h
|
@@ -420,14 +405,12 @@ files:
|
|
420
405
|
- ext/ffi_c/Variadic.c
|
421
406
|
- ext/ffi_c/win32/stdbool.h
|
422
407
|
- ext/ffi_c/win32/stdint.h
|
423
|
-
- gen/log
|
424
408
|
- gen/Rakefile
|
425
409
|
- lib/ffi/autopointer.rb
|
426
410
|
- lib/ffi/buffer.rb
|
427
411
|
- lib/ffi/callback.rb
|
428
412
|
- lib/ffi/enum.rb
|
429
413
|
- lib/ffi/errno.rb
|
430
|
-
- lib/ffi/ffi.iml
|
431
414
|
- lib/ffi/ffi.rb
|
432
415
|
- lib/ffi/io.rb
|
433
416
|
- lib/ffi/library.rb
|
@@ -454,6 +437,7 @@ files:
|
|
454
437
|
- lib/ffi/platform/sparc-linux/types.conf
|
455
438
|
- lib/ffi/platform/sparc-solaris/types.conf
|
456
439
|
- lib/ffi/platform/sparcv9-solaris/types.conf
|
440
|
+
- lib/ffi/platform/x86_64-cygwin/types.conf
|
457
441
|
- lib/ffi/platform/x86_64-darwin/types.conf
|
458
442
|
- lib/ffi/platform/x86_64-freebsd/types.conf
|
459
443
|
- lib/ffi/platform/x86_64-linux/types.conf
|
@@ -495,7 +479,6 @@ files:
|
|
495
479
|
- spec/ffi/rbx/memory_pointer_spec.rb
|
496
480
|
- spec/ffi/rbx/spec_helper.rb
|
497
481
|
- spec/ffi/rbx/struct_spec.rb
|
498
|
-
- spec/ffi/spec.iml
|
499
482
|
- spec/ffi/spec_helper.rb
|
500
483
|
- spec/ffi/string_spec.rb
|
501
484
|
- spec/ffi/strptr_spec.rb
|
@@ -524,43 +507,31 @@ files:
|
|
524
507
|
- libtest/StructTest.c
|
525
508
|
- libtest/UnionTest.c
|
526
509
|
- libtest/VariadicTest.c
|
527
|
-
has_rdoc: true
|
528
510
|
homepage: http://wiki.github.com/ffi/ffi
|
529
|
-
licenses:
|
530
|
-
-
|
511
|
+
licenses:
|
512
|
+
- BSD
|
513
|
+
metadata: {}
|
531
514
|
post_install_message:
|
532
|
-
rdoc_options:
|
515
|
+
rdoc_options:
|
533
516
|
- --exclude=ext/ffi_c/.*\.o$
|
534
517
|
- --exclude=ffi_c\.(bundle|so)$
|
535
|
-
require_paths:
|
518
|
+
require_paths:
|
536
519
|
- lib
|
537
520
|
- ext/ffi_c
|
538
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
- !ruby/object:Gem::Version
|
543
|
-
hash: 57
|
544
|
-
segments:
|
545
|
-
- 1
|
546
|
-
- 8
|
547
|
-
- 7
|
521
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
522
|
+
requirements:
|
523
|
+
- - ! '>='
|
524
|
+
- !ruby/object:Gem::Version
|
548
525
|
version: 1.8.7
|
549
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
hash: 3
|
555
|
-
segments:
|
556
|
-
- 0
|
557
|
-
version: "0"
|
526
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
527
|
+
requirements:
|
528
|
+
- - ! '>='
|
529
|
+
- !ruby/object:Gem::Version
|
530
|
+
version: '0'
|
558
531
|
requirements: []
|
559
|
-
|
560
532
|
rubyforge_project:
|
561
|
-
rubygems_version:
|
533
|
+
rubygems_version: 2.0.8
|
562
534
|
signing_key:
|
563
|
-
specification_version:
|
535
|
+
specification_version: 4
|
564
536
|
summary: Ruby FFI
|
565
537
|
test_files: []
|
566
|
-
|