Sha256: 9b80ee59a6084a384af19931d4554913679ff5b0a50600acddb5e66437a93b71
Contents?: true
Size: 737 Bytes
Versions: 6
Compression:
Stored size: 737 Bytes
Contents
# -*- encoding : utf-8 -*- include Card::Set::Type::Pointer def raw_content if left items = if (left.type_id == SetID) || (left.type_id == CardtypeID) left.default_follow_set_card.all_user_ids_with_rule_for(:follow).map do |user_id| if left.followed_by?(user_id) && (user = Card.find(user_id)) user.name else nil end end.compact else left.follower_names end items.map {|item| "[[#{item}]]"}.join "\n" else '' end end def virtual?; !real? end format() do include Card::Set::Type::Pointer::Format end format(:html) { include Card::Set::Type::Pointer::HtmlFormat }
Version data entries
6 entries across 6 versions & 1 rubygems