-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.jrubyrc
54 lines (33 loc) · 1.22 KB
/
.jrubyrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#log.exceptions=true
#log.backtraces=true
#log.callers=true
#errno.backtrace=true
# Dump to console all bytecode generated at runtime.
# Options: [true, false], Default: false.
#compile.dump=false
# Compile with all "mostly harmless" compiler optimizations.
# Options: [true, false], Default: false.
#compile.fastest=false
# Use invokedynamic for optimizing Ruby code.
# Options: [true, false], Default: false.
#compile.invokedynamic=false
# Set compilation mode. JIT = at runtime; FORCE = before execution.
# Options: [JIT, FORCE, OFF], Default: JIT.
#compile.mode=JIT
# Enable or disable ObjectSpace.each_object.
# Options: [true, false], Default: false.
#objectspace.enabled=false
# Look for .class before .rb to load AOT-compiled code
# Options: [true, false], Default: false.
#aot.loadClasses=false
# Use java.lang.reflect.Proxy for interface impl.
# Options: [true, false], Default: false.
#interfaces.useProxy=false
# Load Java support (class extensions) lazily on demand or ahead of time.
# Options: [true, false], Default: true.
#ji.load.lazy=true
# Try to set inaccessible Java methods to be accessible.
# Options: [true, false], Default: true.
#ji.setAccessible=true
cli.rubygems.enable=true
cli.rubyopt.enable=true