Sha256: d9288c4b2a4648caa9249b05177aaec6cd349abaeae3a78039c59c7bc436dff0

Contents?: true

Size: 845 Bytes

Versions: 9

Compression:

Stored size: 845 Bytes

Contents

# -*- encoding : utf-8 -*-
class Card; module Set; class Right
# Set: All "+Followers" cards
#
# -*- encoding : utf-8 -*-

module Followers;
extend Card::Set
def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/follow/set/right/followers.rb"; end
# X+*followers provides a list of all users following X.

include_set Abstract::Pointer

module HtmlFormat; parent.send :register_set_format, Card::Format::HtmlFormat, self; extend Card::Set::AbstractFormat
  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
end;end;end;end;
# ~~ generated from /Users/ethan/dev/decko/gem/card/mod/follow/set/right/followers.rb ~~

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
card-1.99.4 tmpsets/set/mod017-follow/right/followers.rb
card-1.99.3 tmpsets/set/mod017-follow/right/followers.rb
card-1.99.2 tmpsets/set/mod017-follow/right/followers.rb
card-1.99.1 tmpsets/set/mod017-follow/right/followers.rb
card-1.99.0 tmpsets/set/mod017-follow/right/followers.rb
card-1.98.3 tmpsets/set/mod017-follow/right/followers.rb
card-1.98.2 tmpsets/set/mod017-follow/right/followers.rb
card-1.98.1 tmpsets/set/mod017-follow/right/followers.rb
card-1.98.0 tmpsets/set/mod017-follow/right/followers.rb