Last active
August 29, 2015 14:03
-
-
Save nakaearth/be4ed234a444e64168c0 to your computer and use it in GitHub Desktop.
active_decoratorの場合エラーになる
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DecortorはふつうのRubyのModuleなので、そういう時は
super
を使ってください。