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

Event::Api::OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Card::Set

reset

Methods included from I18nScope

#mod_name, #scope

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

#event

Class Method Details

.source_locationObject



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)

Raises:



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

#abortableObject



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

#abortingObject



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

#event: notable_exception_raisedObject



8
9
10
11
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 8

event :notable_exception_raised do
  error = Card::Error.current
  Rails.logger.debug "#{error.message}\n#{error.backtrace * "\n  "}"
end

#successObject



13
14
15
# File 'platypus/tmp/set/gem-card/mod001-core/all/result.rb', line 13

def success
  Env.success name
end