require 'delegate' class SidebarPostDecorator < SimpleDelegator def initialize(post) super(post) end def body super.truncate(64) end end