ffi 1.1.0 → 1.1.1.rc1
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/Rakefile +1 -1
- data/ext/ffi_c/Buffer.c +1 -1
- data/ext/ffi_c/Platform.c +1 -1
- data/ext/ffi_c/Pointer.c +1 -1
- data/ext/ffi_c/Struct.c +0 -1
- data/ext/ffi_c/{endian.h → rbffi_endian.h} +1 -1
- data/lib/ffi_c.bundle +0 -0
- metadata +32 -42
data/Rakefile
CHANGED
@@ -74,7 +74,7 @@ PROJ.name = 'ffi'
|
|
74
74
|
PROJ.authors = 'Wayne Meissner'
|
75
75
|
PROJ.email = 'wmeissner@gmail.com'
|
76
76
|
PROJ.url = 'http://wiki.github.com/ffi/ffi'
|
77
|
-
PROJ.version = '1.1.
|
77
|
+
PROJ.version = '1.1.1.rc1'
|
78
78
|
PROJ.rubyforge.name = 'ffi'
|
79
79
|
PROJ.readme_file = 'README.rdoc'
|
80
80
|
|
data/ext/ffi_c/Buffer.c
CHANGED
data/ext/ffi_c/Platform.c
CHANGED
data/ext/ffi_c/Pointer.c
CHANGED
data/ext/ffi_c/Struct.c
CHANGED
data/lib/ffi_c.bundle
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,35 +1,30 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 1
|
8
|
-
- 0
|
9
|
-
version: 1.1.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.1.rc1
|
5
|
+
prerelease: 6
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
7
|
+
authors:
|
12
8
|
- Wayne Meissner
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
date: 2012-07-18 00:00:00 +10:00
|
18
|
-
default_executable:
|
12
|
+
date: 2012-07-21 00:00:00.000000000 Z
|
19
13
|
dependencies: []
|
14
|
+
description: ! 'Ruby-FFI is a ruby extension for programmatically loading dynamic
|
20
15
|
|
21
|
-
description: |-
|
22
|
-
Ruby-FFI is a ruby extension for programmatically loading dynamic
|
23
16
|
libraries, binding functions within them, and calling those functions
|
17
|
+
|
24
18
|
from Ruby code. Moreover, a Ruby-FFI extension works without changes
|
19
|
+
|
25
20
|
on Ruby and JRuby. Discover why should you write your next extension
|
26
|
-
|
21
|
+
|
22
|
+
using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi].'
|
27
23
|
email: wmeissner@gmail.com
|
28
24
|
executables: []
|
29
|
-
|
30
|
-
extensions:
|
25
|
+
extensions:
|
31
26
|
- ext/ffi_c/extconf.rb
|
32
|
-
extra_rdoc_files:
|
27
|
+
extra_rdoc_files:
|
33
28
|
- History.txt
|
34
29
|
- README.rdoc
|
35
30
|
- lib/ffi/platform/arm-linux/types.conf
|
@@ -59,7 +54,7 @@ extra_rdoc_files:
|
|
59
54
|
- lib/ffi/platform/x86_64-openbsd/types.conf
|
60
55
|
- lib/ffi/platform/x86_64-solaris/types.conf
|
61
56
|
- lib/ffi_c.bundle
|
62
|
-
files:
|
57
|
+
files:
|
63
58
|
- History.txt
|
64
59
|
- LICENSE
|
65
60
|
- README.rdoc
|
@@ -108,7 +103,6 @@ files:
|
|
108
103
|
- ext/ffi_c/Types.h
|
109
104
|
- ext/ffi_c/Variadic.c
|
110
105
|
- ext/ffi_c/compat.h
|
111
|
-
- ext/ffi_c/endian.h
|
112
106
|
- ext/ffi_c/extconf.rb
|
113
107
|
- ext/ffi_c/ffi.c
|
114
108
|
- ext/ffi_c/libffi.bsd.mk
|
@@ -389,6 +383,7 @@ files:
|
|
389
383
|
- ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
|
390
384
|
- ext/ffi_c/libffi/texinfo.tex
|
391
385
|
- ext/ffi_c/rbffi.h
|
386
|
+
- ext/ffi_c/rbffi_endian.h
|
392
387
|
- ext/ffi_c/win32/stdint.h
|
393
388
|
- gen/Rakefile
|
394
389
|
- lib/ffi.rb
|
@@ -485,39 +480,34 @@ files:
|
|
485
480
|
- tasks/svn.rake
|
486
481
|
- tasks/test.rake
|
487
482
|
- tasks/yard.rake
|
488
|
-
has_rdoc: true
|
489
483
|
homepage: http://wiki.github.com/ffi/ffi
|
490
484
|
licenses: []
|
491
|
-
|
492
485
|
post_install_message:
|
493
|
-
rdoc_options:
|
486
|
+
rdoc_options:
|
494
487
|
- -x
|
495
488
|
- ext
|
496
489
|
- --main
|
497
490
|
- README.rdoc
|
498
|
-
require_paths:
|
491
|
+
require_paths:
|
499
492
|
- lib
|
500
493
|
- ext
|
501
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
requirements:
|
510
|
-
- -
|
511
|
-
- !ruby/object:Gem::Version
|
512
|
-
|
513
|
-
- 0
|
514
|
-
version: "0"
|
494
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
495
|
+
none: false
|
496
|
+
requirements:
|
497
|
+
- - ! '>='
|
498
|
+
- !ruby/object:Gem::Version
|
499
|
+
version: '0'
|
500
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
501
|
+
none: false
|
502
|
+
requirements:
|
503
|
+
- - ! '>'
|
504
|
+
- !ruby/object:Gem::Version
|
505
|
+
version: 1.3.1
|
515
506
|
requirements: []
|
516
|
-
|
517
507
|
rubyforge_project: ffi
|
518
|
-
rubygems_version: 1.
|
508
|
+
rubygems_version: 1.8.23
|
519
509
|
signing_key:
|
520
510
|
specification_version: 3
|
521
|
-
summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,
|
511
|
+
summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,
|
512
|
+
binding functions within them, and calling those functions from Ruby code
|
522
513
|
test_files: []
|
523
|
-
|