ffi 1.1.1 → 1.1.2
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 +4 -1
- data/ext/ffi_c/Ffi_c.iml +12 -0
- data/lib/Lib.iml +13 -0
- data/lib/ffi/platform.rb +6 -1
- data/spec/ffi/Ffi.iml +12 -0
- metadata +47 -28
data/Rakefile
CHANGED
@@ -40,6 +40,9 @@ CPU = case RbConfig::CONFIG['host_cpu'].downcase
|
|
40
40
|
when /ppc|powerpc/
|
41
41
|
"powerpc"
|
42
42
|
|
43
|
+
when /^arm/
|
44
|
+
"arm"
|
45
|
+
|
43
46
|
else
|
44
47
|
RbConfig::CONFIG['host_cpu']
|
45
48
|
end
|
@@ -74,7 +77,7 @@ PROJ.name = 'ffi'
|
|
74
77
|
PROJ.authors = 'Wayne Meissner'
|
75
78
|
PROJ.email = 'wmeissner@gmail.com'
|
76
79
|
PROJ.url = 'http://wiki.github.com/ffi/ffi'
|
77
|
-
PROJ.version = '1.1.
|
80
|
+
PROJ.version = '1.1.2'
|
78
81
|
PROJ.rubyforge.name = 'ffi'
|
79
82
|
PROJ.readme_file = 'README.rdoc'
|
80
83
|
|
data/ext/ffi_c/Ffi_c.iml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4
|
+
<exclude-output />
|
5
|
+
<content url="file://$MODULE_DIR$">
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
7
|
+
</content>
|
8
|
+
<orderEntry type="inheritedJdk" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
</component>
|
11
|
+
</module>
|
12
|
+
|
data/lib/Lib.iml
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4
|
+
<exclude-output />
|
5
|
+
<content url="file://$MODULE_DIR$">
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
7
|
+
</content>
|
8
|
+
<orderEntry type="inheritedJdk" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v0.8.7, RVM: ruby-1.8.7-p357) [gem]" level="application" />
|
11
|
+
</component>
|
12
|
+
</module>
|
13
|
+
|
data/lib/ffi/platform.rb
CHANGED
data/spec/ffi/Ffi.iml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<module type="RUBY_MODULE" version="4">
|
3
|
+
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
4
|
+
<exclude-output />
|
5
|
+
<content url="file://$MODULE_DIR$">
|
6
|
+
<sourceFolder url="file://$MODULE_DIR$" isTestSource="false" />
|
7
|
+
</content>
|
8
|
+
<orderEntry type="inheritedJdk" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
</component>
|
11
|
+
</module>
|
12
|
+
|
metadata
CHANGED
@@ -1,30 +1,36 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 1
|
9
|
+
- 2
|
10
|
+
version: 1.1.2
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Wayne Meissner
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
17
|
+
|
18
|
+
date: 2012-07-30 00:00:00 +10:00
|
19
|
+
default_executable:
|
13
20
|
dependencies: []
|
14
|
-
description: ! 'Ruby-FFI is a ruby extension for programmatically loading dynamic
|
15
21
|
|
22
|
+
description: |-
|
23
|
+
Ruby-FFI is a ruby extension for programmatically loading dynamic
|
16
24
|
libraries, binding functions within them, and calling those functions
|
17
|
-
|
18
25
|
from Ruby code. Moreover, a Ruby-FFI extension works without changes
|
19
|
-
|
20
26
|
on Ruby and JRuby. Discover why should you write your next extension
|
21
|
-
|
22
|
-
using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi].'
|
27
|
+
using Ruby-FFI here[http://wiki.github.com/ffi/ffi/why-use-ffi].
|
23
28
|
email: wmeissner@gmail.com
|
24
29
|
executables: []
|
25
|
-
|
30
|
+
|
31
|
+
extensions:
|
26
32
|
- ext/ffi_c/extconf.rb
|
27
|
-
extra_rdoc_files:
|
33
|
+
extra_rdoc_files:
|
28
34
|
- History.txt
|
29
35
|
- README.rdoc
|
30
36
|
- lib/ffi/platform/arm-linux/types.conf
|
@@ -53,7 +59,8 @@ extra_rdoc_files:
|
|
53
59
|
- lib/ffi/platform/x86_64-netbsd/types.conf
|
54
60
|
- lib/ffi/platform/x86_64-openbsd/types.conf
|
55
61
|
- lib/ffi/platform/x86_64-solaris/types.conf
|
56
|
-
|
62
|
+
- lib/Lib.iml
|
63
|
+
files:
|
57
64
|
- History.txt
|
58
65
|
- LICENSE
|
59
66
|
- README.rdoc
|
@@ -70,6 +77,7 @@ files:
|
|
70
77
|
- ext/ffi_c/DataConverter.c
|
71
78
|
- ext/ffi_c/DynamicLibrary.c
|
72
79
|
- ext/ffi_c/DynamicLibrary.h
|
80
|
+
- ext/ffi_c/Ffi_c.iml
|
73
81
|
- ext/ffi_c/Function.c
|
74
82
|
- ext/ffi_c/Function.h
|
75
83
|
- ext/ffi_c/FunctionInfo.c
|
@@ -385,6 +393,7 @@ files:
|
|
385
393
|
- ext/ffi_c/rbffi_endian.h
|
386
394
|
- ext/ffi_c/win32/stdint.h
|
387
395
|
- gen/Rakefile
|
396
|
+
- lib/Lib.iml
|
388
397
|
- lib/ffi.rb
|
389
398
|
- lib/ffi/autopointer.rb
|
390
399
|
- lib/ffi/buffer.rb
|
@@ -434,6 +443,7 @@ files:
|
|
434
443
|
- lib/ffi/types.rb
|
435
444
|
- lib/ffi/union.rb
|
436
445
|
- lib/ffi/variadic.rb
|
446
|
+
- spec/ffi/Ffi.iml
|
437
447
|
- spec/ffi/async_callback_spec.rb
|
438
448
|
- spec/ffi/bool_spec.rb
|
439
449
|
- spec/ffi/buffer_spec.rb
|
@@ -478,34 +488,43 @@ files:
|
|
478
488
|
- tasks/svn.rake
|
479
489
|
- tasks/test.rake
|
480
490
|
- tasks/yard.rake
|
491
|
+
has_rdoc: true
|
481
492
|
homepage: http://wiki.github.com/ffi/ffi
|
482
493
|
licenses: []
|
494
|
+
|
483
495
|
post_install_message:
|
484
|
-
rdoc_options:
|
496
|
+
rdoc_options:
|
485
497
|
- -x
|
486
498
|
- ext
|
487
499
|
- --main
|
488
500
|
- README.rdoc
|
489
|
-
require_paths:
|
501
|
+
require_paths:
|
490
502
|
- lib
|
491
503
|
- ext
|
492
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
504
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
493
505
|
none: false
|
494
|
-
requirements:
|
495
|
-
- -
|
496
|
-
- !ruby/object:Gem::Version
|
497
|
-
|
498
|
-
|
506
|
+
requirements:
|
507
|
+
- - ">="
|
508
|
+
- !ruby/object:Gem::Version
|
509
|
+
hash: 3
|
510
|
+
segments:
|
511
|
+
- 0
|
512
|
+
version: "0"
|
513
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
499
514
|
none: false
|
500
|
-
requirements:
|
501
|
-
- -
|
502
|
-
- !ruby/object:Gem::Version
|
503
|
-
|
515
|
+
requirements:
|
516
|
+
- - ">="
|
517
|
+
- !ruby/object:Gem::Version
|
518
|
+
hash: 3
|
519
|
+
segments:
|
520
|
+
- 0
|
521
|
+
version: "0"
|
504
522
|
requirements: []
|
523
|
+
|
505
524
|
rubyforge_project: ffi
|
506
|
-
rubygems_version: 1.
|
525
|
+
rubygems_version: 1.6.2
|
507
526
|
signing_key:
|
508
527
|
specification_version: 3
|
509
|
-
summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries,
|
510
|
-
binding functions within them, and calling those functions from Ruby code
|
528
|
+
summary: Ruby-FFI is a ruby extension for programmatically loading dynamic libraries, binding functions within them, and calling those functions from Ruby code
|
511
529
|
test_files: []
|
530
|
+
|