*/
public OSGiScriptingContainer(Bundle creator,
LocalContextScope scope, LocalVariableBehavior behavior, boolean lazy) {
super(scope, behavior, lazy);
if (creator != null) {
super.setClassLoader(new JRubyOSGiBundleClassLoader(creator));
} else {
super.setClassLoader(new JRubyOSGiBundleClassLoader());
}
super.setLoadServiceCreator(OSGiLoadService.OSGI_DEFAULT);
try {
super.setHomeDirectory(OSGiFileLocator.getJRubyHomeFolder().getAbsolutePath());
} catch (IOException e) {