这是一个装饰器
应用程序/装饰器/campaign_decorator.rb
class CampaignDecorator < Draper::Decorator
delegate_all Campaign::Campaign
def created_at
helpers.content_tag :span, class: 'time' do
object.created_at.strftime("%a %m/%d/%y")
end
end
def custom_method
'hello there!'
end
end
当我调用CampaignDecorator.custom_method
它时找不到方法。还CampaignDecorator.first.created_at
返回未格式化的日期。
谁能告诉我我错过了什么?