-
-
Save elvuel/5105701 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example of .jrubyrc | |
# Set compilation mode. JIT = at runtime; FORCE = before execution. (JIT, FORCE, OFF, OFFIR) | |
# compile.mode = FORCE | |
# Dump to console all bytecode generated at runtime. | |
# compile.dump = true | |
# Enable verbose JIT logging (reports failed compilation) | |
# jit.logging.verbose = true | |
# Log require/load file searches. | |
# debug.loadService = true | |
# Display location of the file executed with the -S option | |
# debug.scriptResolution = true | |
compat.version = 1.9 | |
# Set the style of exception backtraces. (normal, raw, full, mri) | |
backtrace.style = raw | |
# Enable colorized backtraces. | |
backtrace.color = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alternatives: | |
* export JRUBY_OPTS=--1.9 to .rvmrc | |
* chmod +x ${rvm_path}/hooks/after_use_jruby_opts # or after_use_jruby | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment