Module: Interest::Followable::Extension

Defined in:
lib/interest/followable.rb

Instance Method Summary collapse

Instance Method Details

#acts_as_followableObject



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

def acts_as_followable
  acts_as_follower
  acts_as_followee
end

#acts_as_followeeObject



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

def acts_as_followee
  include Followee
  define_followee_association_methods
end

#acts_as_followerObject



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

def acts_as_follower
  include Follower
  define_follower_association_methods
end