Module: FollowableBehaviour::Follower::ClassMethods

Defined in:
lib/followable_behaviour/follower.rb

Instance Method Summary collapse

Instance Method Details

#follower_behaviourObject Also known as: acts_as_follower



9
10
11
12
13
# File 'lib/followable_behaviour/follower.rb', line 9

def follower_behaviour
  has_many :follows, as: :follower, dependent: :destroy
  include FollowableBehaviour::Follower::InstanceMethods
  include FollowableBehaviour::FollowerLib
end