Methods
E
L
P
R
S
Attributes
[RW] post
[RW] post_log
Instance Public methods
extension_method()
# File activerecord/test/models/author.rb, line 148
def extension_method; end
label()
# File activerecord/test/models/author.rb, line 165
def label
  "#{id}-#{name}"
end
post_attributes=(attributes)
# File actionview/test/lib/controller/fake_models.rb, line 161
def post_attributes=(attributes); end
ratings()
# File activerecord/test/models/author.rb, line 16
def ratings
  Rating.joins(:comment).merge(self)
end
set_post_log()
# File activerecord/test/models/author.rb, line 161
def set_post_log
  @post_log = []
end
social()
# File activerecord/test/models/author.rb, line 169
def social
  %w(twitter github)
end