Sha256: 318b099bec72d379f34097e06d866946241b6d03db0340624af90e052f8bd7cd
Contents?: true
Size: 625 Bytes
Versions: 8
Compression:
Stored size: 625 Bytes
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class All; module History; # Set: All cards (History, Acts) # # all acts with actions on self and on cards included in self (ie, acts shown in history) module Acts; extend Card::Set def self.source_location; "/Users/ethan/dev/decko/gem/card-mod-history/set/all/history/acts.rb"; end def history_acts @history_acts ||= Act.all_with_actions_on(history_card_ids, true).order id: :desc end def draft_acts drafts.created_by(Card::Auth.current_id).map(&:act) end end;end;end;end;end; # ~~ generated from /Users/ethan/dev/decko/gem/card-mod-history/set/all/history/acts.rb ~~
Version data entries
8 entries across 8 versions & 1 rubygems