Sha256: 1ed7891d784c928b88d4a5c6c55d19dbe3677557fdf8fe00799b12802e9a4e89

Contents?: true

Size: 407 Bytes

Versions: 13

Compression:

Stored size: 407 Bytes

Contents

# -*- encoding : utf-8 -*-

# X+*followers provides a list of all users following X.

include_set Abstract::Pointer

format :html do
  view :core, cache: :never do
    super()
  end
end

def content
  return "" unless left
  item_names.map { |item| "[[#{item}]]" }.join "\n"
end

def item_names _args={}
  return [] unless left
  left.follow_set_card.prototype.follower_names
end

def virtual?
  !real?
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
card-1.96.8 mod/follow/set/right/followers.rb
card-1.96.7 mod/follow/set/right/followers.rb
card-1.96.6 mod/follow/set/right/followers.rb
card-1.96.5 mod/follow/set/right/followers.rb
card-1.96.4 mod/follow/set/right/followers.rb
card-1.96.3 mod/follow/set/right/followers.rb
card-1.96.2 mod/follow/set/right/followers.rb
card-1.96.1 mod/follow/set/right/followers.rb
card-1.96.0 mod/follow/set/right/followers.rb
card-1.95.3 mod/follow/set/right/followers.rb
card-1.95.2 mod/follow/set/right/followers.rb
card-1.95.1 mod/follow/set/right/followers.rb
card-1.95.0 mod/follow/set/right/followers.rb