Module: Card::Set::Abstract::VirtualCache
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod004-virtual/abstract/virtual_cache.rb
Overview
-- encoding : utf-8 --
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Class Method Summary collapse
Instance Method Summary collapse
- #db_content ⇒ Object
- #delete ⇒ Object
- #delete! ⇒ Object
- #followable? ⇒ Boolean
-
#generate_virtual_content ⇒ Object
called to refresh the virtual content the default way is to use the card's template content.
- #history? ⇒ Boolean
- #virtual? ⇒ Boolean
Methods included from Card::Set
Methods included from I18nScope
Methods included from Loader
#clean_empty_module_from_hash, #clean_empty_modules, #extended, #process_base_modules, #register_set
Methods included from Helpers
#method_missing, #num_set_parts, #pattern_code, #respond_to_missing?, #set_name_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
Class Method Details
.source_location ⇒ Object
8 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 8 def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/virtual/set/abstract/virtual_cache.rb"; end |
Instance Method Details
#db_content ⇒ Object
22 23 24 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 22 def db_content Card::Virtual.fetch_content(self) end |
#delete ⇒ Object
42 43 44 45 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 42 def delete # delete although it's new update trash: true end |
#delete! ⇒ Object
47 48 49 50 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 47 def delete! # delete although it's new update! trash: true end |
#followable? ⇒ Boolean
18 19 20 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 18 def followable? false end |
#generate_virtual_content ⇒ Object
called to refresh the virtual content the default way is to use the card's template content
28 29 30 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 28 def generate_virtual_content template&.db_content end |
#history? ⇒ Boolean
14 15 16 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 14 def history? false end |
#virtual? ⇒ Boolean
10 11 12 |
# File 'tmpsets/set/mod004-virtual/abstract/virtual_cache.rb', line 10 def virtual? true end |