A class or method just forwards messages to some other object.
def invoice_total
@invoice.total
end
Extra indirection costs you time and effort as you read code. If you can remove it, perhaps you should.
Some design patterns look a lot like middlemen, for example the Decorator pattern. Don't introduce asymmetry or duplication for the sake of removing indirection.