draper/lib/draper/helper_support.rb

6 lines
112 B
Ruby
Raw Normal View History

module Draper::HelperSupport
def decorate(input, &block)
capture { block.call(input.decorate) }
end
2012-04-25 20:12:30 +00:00
end