module BookmarkSystem

BookmarkSystem module

This module defines common behavior in bookmark system

BookmarkSystem module

This module defines common behavior in bookmark system

BookmarkSystem module

This module defines common behavior in bookmark system

BookmarkSystem module

This module defines common behavior in bookmark system

BookmarkSystem module

This module defines common behavior in bookmark system

Constants

VERSION

Version constant definition

Public Instance Methods

act_as_bookmarkee() click to toggle source

Instructs self to act as bookmarkee

# File lib/bookmark_system.rb, line 32
def act_as_bookmarkee
  include Bookmarkee
end
act_as_bookmarker() click to toggle source

Instructs self to act as bookmarker

# File lib/bookmark_system.rb, line 39
def act_as_bookmarker
  include Bookmarker
end
is_bookmarkee?() click to toggle source

Specifies if self can be bookmarked by {Bookmarker} objects

@return [Boolean]

# File lib/bookmark_system.rb, line 16
def is_bookmarkee?
  false
end
is_bookmarker?() click to toggle source

Specifies if self can bookmark {Bookmarkee} objects

@return [Boolean]

# File lib/bookmark_system.rb, line 25
def is_bookmarker?
  false
end