Skip to content

watkyn/jruby-gems-jar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jruby-gems-jar

Sometimes a really simple solution is best. For distributing a ruby environment in a complex build pipeline, a single jar file containing a ruby runtime and all the gems you want for your project can be a really simple way to go.

That is what this little project tries to do - package up ruby and all your gems into a single jar file, along with any executables from those gems.

Getting Started

  • First, download the jruby-complete.jar file from the latest jruby release at http://jruby.org/download.
  • Rename the jruby-complete.jar file to jruby-gems.jar and place it in this project's directory.
  • Now run "java -jar jruby-gems.jar -S rake -T" to see what options are available for adding / removing gems to the jar.

The rakefile details

rake jruby:add_gem[gem_name, version]     ( add a gem to the jruby-gems.jar file, the version is optional )
rake jruby:extract               ( extract jruby and all the current gems into a tmp directory )
rake jruby:remove_gem[gem_name, version]  ( uninstall a gem from the jruby-gems.jar, the version is optional )
rake jruby:repackage             ( repackage jruby and gems from tmp back into jruby-gems.jar )

Manual install of gems

rake jruby:extract

Then to install multiple gems at once run a command line this

java -jar jruby-gems.jar -S gem install -i temp gem1 gem2 gem3

Then package it back up.

rake jruby:repackage

About

Build a single jar file to house your entire ruby world

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages