Skip to content

Instantly share code, notes, and snippets.

@mkuklis
Created October 20, 2009 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkuklis/213965 to your computer and use it in GitHub Desktop.
Save mkuklis/213965 to your computer and use it in GitHub Desktop.
splits jruby-complete.jar windows
del jruby-core.jar
del ruby-stdlib.jar
rd /sq tmp_unpack
mkdir tmp_unpack
cd tmp_unpack
jar xf ../jruby-complete.jar
cd ..
mkdir jruby-core
move tmp_unpack/org jruby-core/
move tmp_unpack/com jruby-core/
move tmp_unpack/jline jruby-core/
move tmp_unpack/jay jruby-core/
move tmp_unpack/jruby jruby-core/
cd jruby-core
jar cf ../jruby-core.jar .
cd ../tmp_unpack
jar cf ../ruby-stdlib.jar .
cd ..
rd /sq jruby-core
rd /sq tmp_unpack
del jruby-complete.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment