Sha256: 4ce65b98c6cd4e8fc529908cf01e580a20b3349b1012beda55e8df7fb89276b0
Contents?: true
Size: 286 Bytes
Versions: 1
Compression:
Stored size: 286 Bytes
Contents
class Comment < ActiveRecord::Base has_merit belongs_to :user attr_accessible :name, :comment, :user_id, :votes validates :name, :comment, :user_id, :presence => true delegate :comments, :to => :user, :prefix => true def friend User.find_by_name('friend') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merit-1.4.0 | test/dummy/app/models/comment.rb |