ffi 1.1.1-x86-mingw32 → 1.1.2-x86-mingw32
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/1.8/ffi_c.so +0 -0
- data/lib/1.9/ffi_c.so +0 -0
- data/lib/Lib.iml +13 -0
- data/lib/ffi/platform.rb +6 -1
- data/spec/ffi/Ffi.iml +12 -0
- metadata +7 -4
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/1.8/ffi_c.so
CHANGED
Binary file
|
data/lib/1.9/ffi_c.so
CHANGED
Binary file
|
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,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 2
|
10
|
+
version: 1.1.2
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Wayne Meissner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-07-
|
18
|
+
date: 2012-07-30 00:00:00 +10:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -53,6 +53,7 @@ files:
|
|
53
53
|
- ext/ffi_c/DynamicLibrary.h
|
54
54
|
- ext/ffi_c/extconf.rb
|
55
55
|
- ext/ffi_c/ffi.c
|
56
|
+
- ext/ffi_c/Ffi_c.iml
|
56
57
|
- ext/ffi_c/Function.c
|
57
58
|
- ext/ffi_c/Function.h
|
58
59
|
- ext/ffi_c/FunctionInfo.c
|
@@ -414,6 +415,7 @@ files:
|
|
414
415
|
- lib/ffi/union.rb
|
415
416
|
- lib/ffi/variadic.rb
|
416
417
|
- lib/ffi.rb
|
418
|
+
- lib/Lib.iml
|
417
419
|
- spec/ffi/async_callback_spec.rb
|
418
420
|
- spec/ffi/bool_spec.rb
|
419
421
|
- spec/ffi/buffer_spec.rb
|
@@ -423,6 +425,7 @@ files:
|
|
423
425
|
- spec/ffi/dup_spec.rb
|
424
426
|
- spec/ffi/enum_spec.rb
|
425
427
|
- spec/ffi/errno_spec.rb
|
428
|
+
- spec/ffi/Ffi.iml
|
426
429
|
- spec/ffi/ffi_spec.rb
|
427
430
|
- spec/ffi/function_spec.rb
|
428
431
|
- spec/ffi/library_spec.rb
|