Module: Interest::FollowRequestable::Extension

Defined in:
lib/interest/follow_requestable.rb

Instance Method Summary collapse

Instance Method Details

#acts_as_follow_requestableObject



19
20
21
22
# File 'lib/interest/follow_requestable.rb', line 19

def acts_as_follow_requestable
  acts_as_follow_requester
  acts_as_follow_requestee
end

#acts_as_follow_requesteeObject



14
15
16
17
# File 'lib/interest/follow_requestable.rb', line 14

def acts_as_follow_requestee
  include FollowRequestee
  define_follow_requestee_association_methods
end

#acts_as_follow_requesterObject



9
10
11
12
# File 'lib/interest/follow_requestable.rb', line 9

def acts_as_follow_requester
  include FollowRequester
  define_follow_requester_association_methods
end