void resetInterpreter() {
String path = project.getBaseDir().getPath() + "/pmip";
String pmipScript = path + "/pmip.rb";
if (interpreter == null) {
interpreter = new JRubyInterpreter(console);
new StartupScript().execute(interpreter);
} else {
interpreter.reset();
console.reset();
}