Skip to content

Instantly share code, notes, and snippets.

@nakaearth
Last active August 29, 2015 14:03
Show Gist options
  • Save nakaearth/be4ed234a444e64168c0 to your computer and use it in GitHub Desktop.
Save nakaearth/be4ed234a444e64168c0 to your computer and use it in GitHub Desktop.
active_decoratorの場合エラーになる
module UserDecorator
def short_name
name[0, 5]
end
# 以下のメソッドはUserモデルにもある。この状態でView側でcreated_atを使おうとすると
# SystemStackErrorが発生する
def created_at
created_at.strftime("%Y-%m-%d %H:%M")
end
end
@amatsuda
Copy link

DecortorはふつうのRubyのModuleなので、そういう時はsuperを使ってください。

  def created_at
   super.strftime("%Y-%m-%d %H:%M")
  end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment