An open API service indexing awesome lists of open source software.

https://github.com/afaur/jruby-basic

:bulb: A basic example of getting started with JRuby.
https://github.com/afaur/jruby-basic

Last synced: about 1 year ago
JSON representation

:bulb: A basic example of getting started with JRuby.

Awesome Lists containing this project

README

          

# Make use of Java in Ruby?

jruby to the rescue.

# Getting started

## Download

~~~
git clone git@github.com:afaur/JRuby-Basic.git
cd JRuby-Basic
~~~

## JRuby

### RVM

~~~
rvm install jruby-9.0.5.0
~~~

### rbenv

~~~
# with rbenv
rbenv install jruby-9.0.5.0
rbenv local jruby-9.0.5.0
~~~

## Running

~~~
jruby -S gem install jbundler
jbundle install
./bin/run
~~~