rjb 1.0.0-mswin32
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 +183 -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/jniwrap.h +32 -0
 - data/ext/jp_co_infoseek_hp_arton_rjb_RBridge.h +21 -0
 - data/ext/load.c +250 -0
 - data/ext/riconv.c +155 -0
 - data/ext/riconv.h +25 -0
 - data/ext/rjb.c +2651 -0
 - data/ext/rjb.h +129 -0
 - data/ext/rjbexception.c +130 -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.class +0 -0
 - data/test/test.rb +394 -0
 - metadata +71 -0
 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,71 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification 
         
     | 
| 
      
 2 
     | 
    
         
            +
            rubygems_version: 0.9.0
         
     | 
| 
      
 3 
     | 
    
         
            +
            specification_version: 1
         
     | 
| 
      
 4 
     | 
    
         
            +
            name: rjb
         
     | 
| 
      
 5 
     | 
    
         
            +
            version: !ruby/object:Gem::Version 
         
     | 
| 
      
 6 
     | 
    
         
            +
              version: 1.0.0
         
     | 
| 
      
 7 
     | 
    
         
            +
            date: 2006-08-01 00:00:00 +09:00
         
     | 
| 
      
 8 
     | 
    
         
            +
            summary: Ruby Java bridge
         
     | 
| 
      
 9 
     | 
    
         
            +
            require_paths: 
         
     | 
| 
      
 10 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 11 
     | 
    
         
            +
            email: artonx@gmail.com
         
     | 
| 
      
 12 
     | 
    
         
            +
            homepage: http://arton.no-ip.info/collabo/backyard/?RubyJavaBridge
         
     | 
| 
      
 13 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 14 
     | 
    
         
            +
            description: RJB is a bridge program that connect between Ruby and Java with Java Native Interface.
         
     | 
| 
      
 15 
     | 
    
         
            +
            autorequire: 
         
     | 
| 
      
 16 
     | 
    
         
            +
            default_executable: 
         
     | 
| 
      
 17 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 18 
     | 
    
         
            +
            has_rdoc: false
         
     | 
| 
      
 19 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Version::Requirement 
         
     | 
| 
      
 20 
     | 
    
         
            +
              requirements: 
         
     | 
| 
      
 21 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 22 
     | 
    
         
            +
                - !ruby/object:Gem::Version 
         
     | 
| 
      
 23 
     | 
    
         
            +
                  version: 1.8.2
         
     | 
| 
      
 24 
     | 
    
         
            +
              version: 
         
     | 
| 
      
 25 
     | 
    
         
            +
            platform: mswin32
         
     | 
| 
      
 26 
     | 
    
         
            +
            signing_key: 
         
     | 
| 
      
 27 
     | 
    
         
            +
            cert_chain: 
         
     | 
| 
      
 28 
     | 
    
         
            +
            post_install_message: 
         
     | 
| 
      
 29 
     | 
    
         
            +
            authors: 
         
     | 
| 
      
 30 
     | 
    
         
            +
            - arton
         
     | 
| 
      
 31 
     | 
    
         
            +
            files: 
         
     | 
| 
      
 32 
     | 
    
         
            +
            - ext/RBridge.java
         
     | 
| 
      
 33 
     | 
    
         
            +
            - ext/load.c
         
     | 
| 
      
 34 
     | 
    
         
            +
            - ext/riconv.c
         
     | 
| 
      
 35 
     | 
    
         
            +
            - ext/rjb.c
         
     | 
| 
      
 36 
     | 
    
         
            +
            - ext/rjbexception.c
         
     | 
| 
      
 37 
     | 
    
         
            +
            - ext/jniwrap.h
         
     | 
| 
      
 38 
     | 
    
         
            +
            - ext/jp_co_infoseek_hp_arton_rjb_RBridge.h
         
     | 
| 
      
 39 
     | 
    
         
            +
            - ext/riconv.h
         
     | 
| 
      
 40 
     | 
    
         
            +
            - ext/rjb.h
         
     | 
| 
      
 41 
     | 
    
         
            +
            - ext/depend
         
     | 
| 
      
 42 
     | 
    
         
            +
            - data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class
         
     | 
| 
      
 43 
     | 
    
         
            +
            - lib/rjb.rb
         
     | 
| 
      
 44 
     | 
    
         
            +
            - samples/filechooser.rb
         
     | 
| 
      
 45 
     | 
    
         
            +
            - test/gctest.rb
         
     | 
| 
      
 46 
     | 
    
         
            +
            - test/test.rb
         
     | 
| 
      
 47 
     | 
    
         
            +
            - test/jp/co/infoseek/hp/arton/rjb/Base.class
         
     | 
| 
      
 48 
     | 
    
         
            +
            - test/jp/co/infoseek/hp/arton/rjb/ExtBase.class
         
     | 
| 
      
 49 
     | 
    
         
            +
            - test/jp/co/infoseek/hp/arton/rjb/IBase.class
         
     | 
| 
      
 50 
     | 
    
         
            +
            - test/jp/co/infoseek/hp/arton/rjb/Test.class
         
     | 
| 
      
 51 
     | 
    
         
            +
            - COPYING
         
     | 
| 
      
 52 
     | 
    
         
            +
            - ChangeLog
         
     | 
| 
      
 53 
     | 
    
         
            +
            - readme.sj
         
     | 
| 
      
 54 
     | 
    
         
            +
            - readme.txt
         
     | 
| 
      
 55 
     | 
    
         
            +
            - lib/rjbcore.so
         
     | 
| 
      
 56 
     | 
    
         
            +
            test_files: 
         
     | 
| 
      
 57 
     | 
    
         
            +
            - test/test.rb
         
     | 
| 
      
 58 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 61 
     | 
    
         
            +
             
     | 
| 
      
 62 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            requirements: 
         
     | 
| 
      
 67 
     | 
    
         
            +
            - none
         
     | 
| 
      
 68 
     | 
    
         
            +
            - JDK 5.0
         
     | 
| 
      
 69 
     | 
    
         
            +
            - " VC6 version of Ruby"
         
     | 
| 
      
 70 
     | 
    
         
            +
            dependencies: []
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     |