ffi 0.2.0-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.

Files changed (5) hide show
  1. data/LICENSE +26 -0
  2. data/README +1 -0
  3. data/Rakefile +40 -0
  4. data/lib/ffi.rb +1 -0
  5. metadata +57 -0
data/LICENSE ADDED
@@ -0,0 +1,26 @@
1
+ Copyright (c) 2008, 2009, JRuby Project
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+
7
+ * Redistributions of source code must retain the above copyright notice, this
8
+ list of conditions and the following disclaimer.
9
+ * Redistributions in binary form must reproduce the above copyright notice
10
+ this list of conditions and the following disclaimer in the documentation
11
+ and/or other materials provided with the distribution.
12
+ * Neither the name of the JRuby Project nor the names of its contributors
13
+ may be used to endorse or promote products derived from this software
14
+ without specific prior written permission.
15
+
16
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
+
data/README ADDED
@@ -0,0 +1 @@
1
+ This is a dummy gem to satisfy gem dependencies on FFI
@@ -0,0 +1,40 @@
1
+ require 'rubygems'
2
+ require 'rake/gempackagetask'
3
+ require 'rubygems/specification'
4
+ require 'date'
5
+ require 'fileutils'
6
+ require 'rbconfig'
7
+
8
+ GEM = "ffi"
9
+ GEM_VERSION = "0.2.0"
10
+ AUTHOR = "Wayne Meissner"
11
+ EMAIL = "wmeissner@gmail.com"
12
+ HOMEPAGE = "http://kenai.com/projects/ruby-ffi"
13
+ SUMMARY = "A Ruby foreign function interface"
14
+
15
+ spec = Gem::Specification.new do |s|
16
+ s.name = GEM
17
+ s.version = GEM_VERSION
18
+ s.platform = 'java'
19
+ s.has_rdoc = false
20
+ s.extra_rdoc_files = ["README", "LICENSE"]
21
+ s.summary = SUMMARY
22
+ s.description = s.summary
23
+ s.author = AUTHOR
24
+ s.email = EMAIL
25
+ s.homepage = HOMEPAGE
26
+ s.rubyforge_project = 'ffi'
27
+ s.require_path = 'lib'
28
+ s.files = %w(README LICENSE Rakefile) + Dir.glob("lib/**/*")
29
+ end
30
+
31
+ Rake::GemPackageTask.new(spec) do |pkg|
32
+ pkg.gem_spec = spec
33
+ end
34
+
35
+ desc "create a gemspec file"
36
+ task :make_spec do
37
+ File.open("#{GEM}.gemspec", "w") do |file|
38
+ file.puts spec.to_ruby
39
+ end
40
+ end
@@ -0,0 +1 @@
1
+ require 'ffi/ffi'
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ required_ruby_version: !ruby/object:Gem::Requirement
3
+ requirements:
4
+ - - '>='
5
+ - !ruby/object:Gem::Version
6
+ version: "0"
7
+ version:
8
+ email: wmeissner@gmail.com
9
+ cert_chain: []
10
+
11
+ summary: A Ruby foreign function interface
12
+ post_install_message:
13
+ extra_rdoc_files:
14
+ - README
15
+ - LICENSE
16
+ homepage: http://kenai.com/projects/ruby-ffi
17
+ signing_key:
18
+ name: ffi
19
+ rdoc_options: []
20
+
21
+ autorequire:
22
+ rubyforge_project: ffi
23
+ executables: []
24
+
25
+ description: A Ruby foreign function interface
26
+ specification_version: 2
27
+ default_executable:
28
+ files:
29
+ - README
30
+ - LICENSE
31
+ - Rakefile
32
+ - lib/ffi.rb
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - '>='
36
+ - !ruby/object:Gem::Version
37
+ version: "0"
38
+ version:
39
+ extensions: []
40
+
41
+ rubygems_version: 1.3.1
42
+ requirements: []
43
+
44
+ authors:
45
+ - Wayne Meissner
46
+ date: 2009-02-23 14:00:00 +00:00
47
+ platform: java
48
+ test_files: []
49
+
50
+ version: !ruby/object:Gem::Version
51
+ version: 0.2.0
52
+ require_paths:
53
+ - lib
54
+ dependencies: []
55
+
56
+ bindir: bin
57
+ has_rdoc: false