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.

Files changed (72) hide show
  1. checksums.yaml +15 -0
  2. data/COPYING +48 -673
  3. data/LICENSE +21 -11
  4. data/README.md +6 -6
  5. data/ext/ffi_c/AbstractMemory.c +23 -12
  6. data/ext/ffi_c/AbstractMemory.h +21 -12
  7. data/ext/ffi_c/ArrayType.c +21 -12
  8. data/ext/ffi_c/ArrayType.h +21 -12
  9. data/ext/ffi_c/Buffer.c +22 -12
  10. data/ext/ffi_c/Call.c +21 -12
  11. data/ext/ffi_c/Call.h +21 -12
  12. data/ext/ffi_c/ClosurePool.c +21 -12
  13. data/ext/ffi_c/ClosurePool.h +21 -12
  14. data/ext/ffi_c/DynamicLibrary.c +21 -12
  15. data/ext/ffi_c/DynamicLibrary.h +21 -12
  16. data/ext/ffi_c/Function.c +21 -12
  17. data/ext/ffi_c/Function.h +21 -12
  18. data/ext/ffi_c/FunctionInfo.c +22 -12
  19. data/ext/ffi_c/LastError.c +22 -12
  20. data/ext/ffi_c/LastError.h +21 -12
  21. data/ext/ffi_c/LongDouble.h +21 -12
  22. data/ext/ffi_c/MappedType.c +21 -12
  23. data/ext/ffi_c/MappedType.h +21 -12
  24. data/ext/ffi_c/MemoryPointer.c +22 -13
  25. data/ext/ffi_c/MemoryPointer.h +21 -12
  26. data/ext/ffi_c/MethodHandle.c +21 -12
  27. data/ext/ffi_c/MethodHandle.h +21 -12
  28. data/ext/ffi_c/Platform.c +21 -12
  29. data/ext/ffi_c/Platform.h +21 -12
  30. data/ext/ffi_c/Pointer.c +21 -12
  31. data/ext/ffi_c/Pointer.h +21 -12
  32. data/ext/ffi_c/Struct.c +22 -13
  33. data/ext/ffi_c/Struct.h +21 -12
  34. data/ext/ffi_c/StructByValue.c +21 -12
  35. data/ext/ffi_c/StructByValue.h +21 -12
  36. data/ext/ffi_c/StructLayout.c +21 -12
  37. data/ext/ffi_c/Thread.c +21 -12
  38. data/ext/ffi_c/Thread.h +21 -12
  39. data/ext/ffi_c/Type.c +23 -12
  40. data/ext/ffi_c/Type.h +24 -9
  41. data/ext/ffi_c/Types.c +21 -12
  42. data/ext/ffi_c/Types.h +21 -12
  43. data/ext/ffi_c/Variadic.c +22 -12
  44. data/ext/ffi_c/compat.h +21 -12
  45. data/ext/ffi_c/ffi.c +22 -12
  46. data/ext/ffi_c/rbffi.h +21 -12
  47. data/ffi.gemspec +2 -2
  48. data/lib/ffi/autopointer.rb +21 -11
  49. data/lib/ffi/enum.rb +22 -11
  50. data/lib/ffi/errno.rb +21 -11
  51. data/lib/ffi/ffi.rb +22 -11
  52. data/lib/ffi/io.rb +21 -11
  53. data/lib/ffi/library.rb +22 -12
  54. data/lib/ffi/managedstruct.rb +29 -0
  55. data/lib/ffi/platform.rb +20 -11
  56. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  57. data/lib/ffi/pointer.rb +22 -10
  58. data/lib/ffi/struct.rb +22 -11
  59. data/lib/ffi/struct_layout_builder.rb +22 -11
  60. data/lib/ffi/types.rb +23 -10
  61. data/lib/ffi/union.rb +23 -12
  62. data/lib/ffi/variadic.rb +24 -11
  63. data/lib/ffi/version.rb +1 -1
  64. data/libtest/BoolTest.c +4 -1
  65. data/libtest/StructTest.c +4 -1
  66. metadata +72 -101
  67. data/COPYING.LESSER +0 -165
  68. data/History.txt +0 -1
  69. data/ext/ffi_c/cruby-ext.iml +0 -12
  70. data/gen/log +0 -1
  71. data/lib/ffi/ffi.iml +0 -11
  72. 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
- # This code is free software: you can redistribute it and/or modify it under
9
- # the terms of the GNU Lesser General Public License version 3 only, as
10
- # published by the Free Software Foundation.
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
- # This code is distributed in the hope that it will be useful, but WITHOUT
13
- # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
- # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15
- # version 3 for more details.
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
- # 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/>.
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
@@ -1,20 +1,33 @@
1
1
  #
2
2
  # Copyright (C) 2008-2010 Wayne Meissner
3
- # All rights reserved.
3
+ # Copyright (c) 2007, 2008 Evan Phoenix
4
4
  #
5
5
  # This file is part of ruby-ffi.
6
6
  #
7
- # This code is free software: you can redistribute it and/or modify it under
8
- # the terms of the GNU Lesser General Public License version 3 only, as
9
- # published by the Free Software Foundation.
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
- # This code is distributed in the hope that it will be useful, but WITHOUT
12
- # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
- # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
14
- # version 3 for more details.
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
- # You should have received a copy of the GNU Lesser General Public License
17
- # version 3 along with this work. If not, see <http://www.gnu.org/licenses/>.
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}
@@ -1,21 +1,32 @@
1
1
  #
2
- # Copyright (C) 2008-2010 Wayne Meissner
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
- # This code is free software: you can redistribute it and/or modify it under
9
- # the terms of the GNU Lesser General Public License version 3 only, as
10
- # published by the Free Software Foundation.
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
- # This code is distributed in the hope that it will be useful, but WITHOUT
13
- # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
- # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15
- # version 3 for more details.
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
- # 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/>.
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'
@@ -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
- # This code is free software: you can redistribute it and/or modify it under
9
- # the terms of the GNU Lesser General Public License version 3 only, as
10
- # published by the Free Software Foundation.
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
- # This code is distributed in the hope that it will be useful, but WITHOUT
13
- # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14
- # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15
- # version 3 for more details.
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
@@ -1,4 +1,4 @@
1
1
  module FFI
2
- VERSION = '1.9.0'
2
+ VERSION = '1.9.3'
3
3
  end
4
4
 
@@ -1,5 +1,8 @@
1
1
  /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
2
+ * Copyright (c) 2007 Wayne Meissner.
3
+ * Copyright (c) 2009 Aman Gupta.
4
+ *
5
+ * All rights reserved.
3
6
  *
4
7
  * For licensing, see LICENSE.SPECS
5
8
  */
@@ -1,5 +1,8 @@
1
1
  /*
2
- * Copyright (c) 2007 Wayne Meissner. All rights reserved.
2
+ * Copyright (c) 2007 Wayne Meissner.
3
+ * Copyright (c) 2009 Andrea Fazzi <andrea.fazzi@alcacoop.it>.
4
+ *
5
+ * All rights reserved.
3
6
  *
4
7
  * For licensing, see LICENSE.SPECS
5
8
  */
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
- hash: 51
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
- date: 2013-06-10 00:00:00 +10:00
19
- default_executable:
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
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
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
- requirement: &id002 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- hash: 7
44
- segments:
45
- - 0
46
- - 6
47
- - 0
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
- requirement: &id003 !ruby/object:Gem::Requirement
55
- none: false
56
- requirements:
57
- - - ">="
58
- - !ruby/object:Gem::Version
59
- hash: 3
60
- segments:
61
- - 0
62
- version: "0"
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
- requirement: &id004 !ruby/object:Gem::Requirement
69
- none: false
70
- requirements:
71
- - - ">="
72
- - !ruby/object:Gem::Version
73
- hash: 3
74
- segments:
75
- - 0
76
- version: "0"
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
- version_requirements: *id004
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
- - LGPL-3
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
- none: false
540
- requirements:
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
- none: false
551
- requirements:
552
- - - ">="
553
- - !ruby/object:Gem::Version
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: 1.6.2
533
+ rubygems_version: 2.0.8
562
534
  signing_key:
563
- specification_version: 3
535
+ specification_version: 4
564
536
  summary: Ruby FFI
565
537
  test_files: []
566
-