sklemm / jrequire

using java libraries in ruby - thin wrapper for rjb

This URL has Read+Write access

name age message
file LICENSE Loading commit data...
file README.md
directory lib/
README.md

jrequire - using java libraries in ruby

This is a thin wrapper for RJB, the Ruby Java Bridge. It allows you to include Java classes with jrequire and to use them as Ruby classes. It maps the packages and class name to a nested set of Ruby modules. The first letter of each module name is capitalized. For example, java.util.HashMap would become Java::Util::HashMap

Installation

Performing a git clone on the following repository will get you the latest source:

git clone git://github.com/sklemm/jrequire.git 

Copy the jrequire.rb file in your application folder

Usage

To load the Java lib in your application, do once:

require 'jrequire'

libpath = "path/to/your/java/libs"

classpath = ENV['CLASSPATH'] ||= ''
classpath += File::PATH_SEPARATOR + File.join(libpath, 'thereswhiskyinthe.jar')

load_jvm(classpath, ['-Xms128m', '-Xmx1024m'])

To use the Java classes in Ruby code, do:

jrequire 'theres.whisky.in.the.Jar'

nice_song = Theres::Whisky::In::The::Jar.new

Licensing and Copyright

  • Original Work Copyright (C) 2006 Richard L. Apodaca

  • Modifications Copyright (C) 2009 Sebastian Klemm

This file is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation.

This file is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

Support

klemm.sebi@bluewin.ch