* Removes a box from Vagrant
* @param boxName name of the box you want to remove
*/
public void removeBox(String boxName) {
try {
RubyArray boxes = (RubyArray) ((RubyObject) vagrantEnvironment
.callMethod("boxes")).getInternalVariable("@boxes");
for (Object box : boxes) {
String name = ((RubyObject) box).callMethod("name").toString();
if(name.equals(boxName)) {
((RubyObject) box).callMethod("destroy");