blob: 566e0873f162cb5c32ef3d4d9d7c52a25f56cb19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Club < ActiveRecord::Base
has_one :membership
has_many :memberships, :inverse_of => false
has_many :members, :through => :memberships
has_one :sponsor
has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
belongs_to :category
private
def private_method
"I'm sorry sir, this is a *private* club, not a *pirate* club"
end
end
|