Module: Card::Set::Abstract::Machine::OutputCache

Extended by:
Card::Set
Defined in:
tmpsets/set/mod014-machines/abstract/machine/output_cache.rb

Overview

Set: Abstract (Machine, OutputCache)

Class Method Summary collapse

Instance Method Summary collapse

Methods included from I18nScope

#mod_name, #scope

Methods included from Loader

#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set

Methods included from Helpers

#abstract_set?, #all_set?, #num_set_parts, #shortname, #underscore

Methods included from Card::Set::AdvancedApi

#attachment, #ensure_set, #stage_method

Methods included from Format

#before, #format, layout_method_name, #view, view_method_name, view_setting_method_name, wrapper_method_name

Methods included from Inheritance

#include_set, #include_set_formats

Methods included from Basket

#abstract_basket, #add_to_basket, #basket, #unshift_basket

Methods included from Trait

#card_accessor, #card_reader, #card_writer, #require_field

Methods included from Event::Api

#event

Class Method Details

.source_locationObject



7
# File 'tmpsets/set/mod014-machines/abstract/machine/output_cache.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/machines/set/abstract/machine/output_cache.rb"; end

Instance Method Details

#cache_output_part(input_card, output) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
# File 'tmpsets/set/mod014-machines/abstract/machine/output_cache.rb', line 13

def cache_output_part input_card, output
  Auth.as_bot do
    # save virtual cards first
    # otherwise the cache card will save it to get the left_id
    # and trigger the cache update again
    input_card.save! if input_card.new_card?

    cache_card = fetch_cache_card(input_card, true)
    cache_card.update! content: output
  end
end

#fetch_cache_card(input_card, new = nil) ⇒ Object



8
9
10
11
# File 'tmpsets/set/mod014-machines/abstract/machine/output_cache.rb', line 8

def fetch_cache_card input_card, new=nil
  new &&= { type_id: PlainTextID }
  Card.fetch input_card.name, name, :machine_cache, new: new
end