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.
- Host: GitHub
- URL: https://github.com/afaur/jruby-basic
- Owner: afaur
- Created: 2016-04-25T22:10:30.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-10T16:50:29.000Z (over 9 years ago)
- Last Synced: 2025-02-12T13:56:38.750Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
~~~