Module: Card::Set::All::Actify
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod003-core/all/actify.rb
Overview
Set: All cards (Actify)
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
- #act(&block) ⇒ Object
- #add_to_act ⇒ Object
- #save ⇒ Object
- #save! ⇒ Object
- #start_new_act ⇒ Object
- #update(*args) ⇒ Object (also: #update_attributes)
- #update!(*args) ⇒ Object (also: #update_attributes!)
- #valid? ⇒ Boolean
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
#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
Class Method Details
.source_location ⇒ Object
7 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 7 def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/actify.rb"; end |
Instance Method Details
#act(&block) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 8 def act &block @action ||= identify_action if ActManager.act_card add_to_act &block else start_new_act &block end end |
#add_to_act ⇒ Object
24 25 26 27 28 29 30 31 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 24 def add_to_act # if only_storage_phase is true then the card is already part of the act return yield if ActManager.act_card == self || only_storage_phase director.reset_stage director.update_card self self.only_storage_phase = true yield end |
#save ⇒ Object
55 56 57 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 55 def save(*) act { super } end |
#save! ⇒ Object
51 52 53 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 51 def save!(*) act { super } end |
#start_new_act ⇒ Object
17 18 19 20 21 22 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 17 def start_new_act self.director = nil ActManager.run_act(self) do run_callbacks(:act) { yield } end end |
#update(*args) ⇒ Object Also known as: update_attributes
63 64 65 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 63 def update *args act { super } end |
#update!(*args) ⇒ Object Also known as: update_attributes!
67 68 69 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 67 def update! *args act { super } end |
#valid? ⇒ Boolean
59 60 61 |
# File 'tmpsets/set/mod003-core/all/actify.rb', line 59 def valid?(*) act { super } end |