No commit activity in last 3 years
No release in over 3 years
A simple hello world gem
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

java-gem-test

Testing creating a java platform gem.

Gem name: java_gem_test_0902376782

Manual build and install working. Uses scripts in scripts dir followed by gem install.

example

Script:

require 'java_gem_test_0902376782'

puts 'Ruby:'
JavaGemTest::HolaRuby.hi
puts

puts 'Ruby wrapper:'
JavaGemTest::HolaRubyWrapper.hi
puts

puts 'Java:'
com.mattwelke.javagemtest.Hola.hi

Output:

Ruby:
Hello from Ruby!

Ruby wrapper:
Hello from Java!
 (through Ruby wrapper)

Java:
Hello from Java!