Just added it; you can pull the changes by doing
Pkg.update("Gurobi"). To use it, you can do something like
using Gurobi,MathProgBase,JuMP
m=Model(solver=GurobiSolver())
...
Gurobi.del_constrs!(MathProgBase.getrawsolver(getInternalModel(m)), [1,3])
Gurobi.update_model!(MathProgBase.getrawsolver(getInternalModel(m)))
Where [1,3] is the (one-indexed) set if rows you want to delete from your model. To verify you get what you expect, you can always do MathProgBase.getconstrmatrix(getInternalModel(m)) and inspect the results. Same disclaimers about messing with JuMPs constraint indexing apply. I didn't do extensive testing, so let me know if it doesn't work as expected.
-Joey