Module: Card::Set::All::Result
- Extended by:
- Card::Set
- Defined in:
- platypus/tmp/set/gem-card/mod001-core/all/result.rb
Overview
Set: All cards (Result)
Constant Summary
Constants included from Helpers
Helpers::SET_PATTERN_TEST_REGEXP
Constants included from Event::Api
Class Method Summary collapse
Instance Method Summary collapse
-
#abort(status, msg = "action canceled") ⇒ Object
The Card#abort method is for cleanly exiting an action without continuing to process any further events.
-
#abortable ⇒ Object
-
#aborting ⇒ Object
-
#event: notable_exception_raised ⇒ Object
-
#success ⇒ Object
Methods included from Card::Set
Methods included from I18nScope
Methods included from Registrar
#extended, #finalize_load, #process_base_modules, #register_set
Methods included from Helpers
#format_module, #format_modules, #method_missing, #modules, #pattern_code, #respond_to_missing?, #set_name_parts, #shortname, #underscored_name
Methods included from Card::Set::AdvancedApi
#assign_type, #attachment, #define_set_from_error, #ensure_set, #setting_opts, #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 Trait
#card_accessor, #card_reader, #card_writer, #require_field
Methods included from Event::Api
Class Method Details
.source_location ⇒ Object
7 |
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 7 def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/result.rb"; end |
Instance Method Details
#abort(status, msg = "action canceled") ⇒ Object
The Card#abort method is for cleanly exiting an action without continuing to process any further events.
Three statuses are supported:
failure: adds an error, returns false on save success: no error, returns true on save triumph: similar to success, but if called on a subcard it causes the entire action to abort (not just the subcard)
26 27 28 29 30 31 32 33 34 35 |
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 26 def abort status, msg="action canceled" director.abort if status == :failure && errors.empty? errors.add :abort, msg elsif status.is_a?(Hash) && status[:success] success << status[:success] status = :success end raise Card::Error::Abort.new(status, msg) end |
#abortable ⇒ Object
42 43 44 45 46 |
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 42 def abortable yield rescue Card::Error::Abort => e handle_abort_error e end |
#aborting ⇒ Object
37 38 39 40 |
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 37 def aborting yield errors.any? ? abort(:failure) : abort(:success) end |