Hi Carlos,
Rattle's Log tab should give the answer! All commands that you run through the GUI are reported within the Log tab (so you can actually export the Log tab as an R script to repeat the GUI activities). From the Log Tab after building a random forest:
# The `pROC' package implements various AUC functions.
# Calculate the Area Under the Curve (AUC).
pROC::roc(crs$rf$y, as.numeric(crs$rf$predicted))
# Calculate the AUC Confidence Interval.
pROC::ci.auc(crs$rf$y, as.numeric(crs$rf$predicted))
Also under the Evaluate tab if you choose ROC curve you will also see that ROCR is used to calculate AUC there!
# ROC Curve: requires the ROCR package.
library(ROCR)
[...]
performance(pred, "auc")
General philosophy of Rattle is to use other packages to perform the actions, bringing this together into the one GUI.