rjb 1.1.0-x86-mswin32-60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +504 -0
- data/ChangeLog +270 -0
- data/data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class +0 -0
- data/ext/RBridge.java +39 -0
- data/ext/depend +23 -0
- data/ext/extconf.h +8 -0
- data/ext/jniwrap.h +32 -0
- data/ext/jp_co_infoseek_hp_arton_rjb_RBridge.h +21 -0
- data/ext/load.c +287 -0
- data/ext/riconv.c +225 -0
- data/ext/riconv.h +24 -0
- data/ext/rjb.c +2807 -0
- data/ext/rjb.h +142 -0
- data/ext/rjbexception.c +135 -0
- data/lib/rjb.rb +22 -0
- data/lib/rjbcore.so +0 -0
- data/readme.sj +27 -0
- data/readme.txt +28 -0
- data/samples/filechooser.rb +46 -0
- data/test/gctest.rb +24 -0
- data/test/jp/co/infoseek/hp/arton/rjb/Base.class +0 -0
- data/test/jp/co/infoseek/hp/arton/rjb/ExtBase.class +0 -0
- data/test/jp/co/infoseek/hp/arton/rjb/IBase.class +0 -0
- data/test/jp/co/infoseek/hp/arton/rjb/Test$TestTypes.class +0 -0
- data/test/jp/co/infoseek/hp/arton/rjb/Test.class +0 -0
- data/test/test.rb +570 -0
- metadata +80 -0
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rjb
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.1.0
|
5
|
+
platform: x86-mswin32-60
|
6
|
+
authors:
|
7
|
+
- arton
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2007-12-28 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: RJB is a bridge program that connect between Ruby and Java with Java Native Interface.
|
17
|
+
email: artonx@gmail.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files: []
|
23
|
+
|
24
|
+
files:
|
25
|
+
- ext/RBridge.java
|
26
|
+
- ext/load.c
|
27
|
+
- ext/riconv.c
|
28
|
+
- ext/rjb.c
|
29
|
+
- ext/rjbexception.c
|
30
|
+
- ext/extconf.h
|
31
|
+
- ext/jniwrap.h
|
32
|
+
- ext/jp_co_infoseek_hp_arton_rjb_RBridge.h
|
33
|
+
- ext/riconv.h
|
34
|
+
- ext/rjb.h
|
35
|
+
- ext/depend
|
36
|
+
- data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class
|
37
|
+
- lib/rjb.rb
|
38
|
+
- samples/filechooser.rb
|
39
|
+
- test/gctest.rb
|
40
|
+
- test/test.rb
|
41
|
+
- test/jp/co/infoseek/hp/arton/rjb/Base.class
|
42
|
+
- test/jp/co/infoseek/hp/arton/rjb/ExtBase.class
|
43
|
+
- test/jp/co/infoseek/hp/arton/rjb/IBase.class
|
44
|
+
- test/jp/co/infoseek/hp/arton/rjb/Test$TestTypes.class
|
45
|
+
- test/jp/co/infoseek/hp/arton/rjb/Test.class
|
46
|
+
- COPYING
|
47
|
+
- ChangeLog
|
48
|
+
- readme.sj
|
49
|
+
- readme.txt
|
50
|
+
- lib/rjbcore.so
|
51
|
+
has_rdoc: false
|
52
|
+
homepage: http://arton.no-ip.info/collabo/backyard/?RubyJavaBridge
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options: []
|
55
|
+
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 1.8.2
|
63
|
+
version:
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: "0"
|
69
|
+
version:
|
70
|
+
requirements:
|
71
|
+
- none
|
72
|
+
- JDK 5.0
|
73
|
+
- " VC6 version of Ruby"
|
74
|
+
rubyforge_project:
|
75
|
+
rubygems_version: 1.0.1
|
76
|
+
signing_key:
|
77
|
+
specification_version: 2
|
78
|
+
summary: Ruby Java bridge
|
79
|
+
test_files:
|
80
|
+
- test/test.rb
|