ffi 1.2.0.pre6-java → 1.2.1-java
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 +3 -1
- metadata +28 -36
data/Rakefile
CHANGED
@@ -72,7 +72,9 @@ LIBTEST = "build/libtest.#{LIBEXT}"
|
|
72
72
|
BUILD_DIR = "build"
|
73
73
|
BUILD_EXT_DIR = File.join(BUILD_DIR, "#{RbConfig::CONFIG['arch']}", 'ffi_c', RUBY_VERSION)
|
74
74
|
|
75
|
-
gem_spec
|
75
|
+
def gem_spec
|
76
|
+
@gem_spec ||= Gem::Specification.load('ffi.gemspec')
|
77
|
+
end
|
76
78
|
|
77
79
|
Gem::PackageTask.new(gem_spec) do |pkg|
|
78
80
|
pkg.need_zip = true
|
metadata
CHANGED
@@ -1,59 +1,51 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.1
|
5
|
+
prerelease:
|
6
6
|
platform: java
|
7
|
-
authors:
|
8
|
-
|
7
|
+
authors:
|
8
|
+
- Wayne Meissner
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2012-11-15 00:00:00 Z
|
12
|
+
date: 2013-01-08 00:00:00.000000000 Z
|
14
13
|
dependencies: []
|
15
|
-
|
16
14
|
description: Ruby FFI library
|
17
15
|
email: wmeissner@gmail.com
|
18
16
|
executables: []
|
19
|
-
|
20
17
|
extensions: []
|
21
|
-
|
22
18
|
extra_rdoc_files: []
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
- Rakefile
|
19
|
+
files:
|
20
|
+
- History.txt
|
21
|
+
- LICENSE
|
22
|
+
- COPYING
|
23
|
+
- COPYING.LESSER
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
31
26
|
homepage: http://wiki.github.com/ffi/ffi
|
32
|
-
licenses:
|
33
|
-
|
27
|
+
licenses:
|
28
|
+
- LGPL-3
|
34
29
|
post_install_message:
|
35
30
|
rdoc_options: []
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
34
|
none: false
|
41
|
-
requirements:
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ! '>='
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
46
40
|
none: false
|
47
|
-
requirements:
|
48
|
-
|
49
|
-
|
50
|
-
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
51
45
|
requirements: []
|
52
|
-
|
53
46
|
rubyforge_project:
|
54
47
|
rubygems_version: 1.8.24
|
55
48
|
signing_key:
|
56
49
|
specification_version: 3
|
57
50
|
summary: Ruby FFI
|
58
51
|
test_files: []
|
59
|
-
|