module FollowSystem

FollowSystem module

This module defines common behavior in follow system

FollowSystem module

This module defines common behavior in follow system

FollowSystem module

This module defines common behavior in follow system

FollowSystem module

This module defines common behavior in follow system

FollowSystem module

This module defines common behavior in follow system

Constants

VERSION

Version constant definition

Public Instance Methods

act_as_followee() click to toggle source

Instructs self to act as followee

# File lib/follow_system.rb, line 32
def act_as_followee
  include Followee
end
act_as_follower() click to toggle source

Instructs self to act as follower

# File lib/follow_system.rb, line 39
def act_as_follower
  include Follower
end
is_followee?() click to toggle source

Specifies if self can be followed by {Follower} objects

@return [Boolean]

# File lib/follow_system.rb, line 16
def is_followee?
  false
end
is_follower?() click to toggle source

Specifies if self can follow {Followee} objects

@return [Boolean]

# File lib/follow_system.rb, line 25
def is_follower?
  false
end