// setup local rubygems repository
this.home = new File("target");
this.path = new File("target/rubygems");
GemsConfig config = new GemsConfig();
config.setGemHome(home);
config.addGemPath(path);
this.path.mkdirs();
this.expected = "onetwothree" + SEP + this.home.getAbsolutePath() + SEP
+ this.path.getAbsolutePath() + SEP;