module HasFriendship::Extender

Public Class Methods

included(base) click to toggle source
# File lib/has_friendship/extender.rb, line 3
def self.included(base)

  # Dynamically define the Friendship's association based on where the module is included.
  HasFriendship::Friendship.class_eval do
    belongs_to :friendable, polymorphic: true
    belongs_to :friend, class_name: "#{base.to_s}", foreign_key: :friend_id
  end

end