Add missing file

This commit is contained in:
Chris Heald 2012-05-10 17:54:31 -07:00
parent eea4c866a6
commit 719ddbf808
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
class DecoratorWithSpecialMethods < Draper::Base
def to_param
"foo"
end
def id
1337
end
def errors
["omg errors!"]
end
end