Skip to content

Commit

Permalink
use legacy load-service as default
Browse files Browse the repository at this point in the history
  • Loading branch information
mkristian committed Feb 20, 2015
1 parent ea0194f commit f5d02ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/util/cli/Options.java
Expand Up @@ -179,7 +179,7 @@ public class Options {
public static final Option<Integer> FIBER_THREADPOOL_TTL = integer(THREADPOOL, "fiber.thread.pool.ttl", 60, "The maximum number of seconds to keep alive a pooled fiber thread.");

public static final Option<Boolean> CLASSLOADER_DELEGATE = bool(MISCELLANEOUS, "classloader.delegate", true, "In some cases of classloader conflicts it might help not to delegate first to the parent classloader but to load first from the jruby-classloader.");
public static final Option<Boolean> LEGACY_LOADSERVICE_ENABLED = bool(MISCELLANEOUS, "legacy.loadService.enabled", false, "Enable or disable legacy load-service. Disabling needs .jrubydir files for directory globs work in required jar-files.");
public static final Option<Boolean> LEGACY_LOADSERVICE_ENABLED = bool(MISCELLANEOUS, "legacy.loadService.enabled", true, "Enable or disable legacy load-service. Disabling needs .jrubydir files for directory globs work in required jar-files.");
public static final Option<Boolean> OBJECTSPACE_ENABLED = bool(MISCELLANEOUS, "objectspace.enabled", false, "Enable or disable ObjectSpace.each_object.");
public static final Option<Boolean> SIPHASH_ENABLED = bool(MISCELLANEOUS, "siphash.enabled", false, "Enable or disable SipHash for String hash function.");
public static final Option<Boolean> LAUNCH_INPROC = bool(MISCELLANEOUS, "launch.inproc", false, "Set in-process launching of e.g. system('ruby ...').");
Expand Down

0 comments on commit f5d02ae

Please sign in to comment.