Module: Card::Set::All::Utils

Extended by:
Card::Set
Defined in:
tmpsets/set/mod003-core/all/utils.rb

Overview

Set: All cards (Utils)

Defined Under Namespace

Modules: ClassMethods, Format

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/mod003-core/all/utils.rb', line 7

def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/utils.rb"; end

Instance Method Details

#measure(desc) ⇒ Object

rubocop:disable Style/GlobalVars



77
78
79
80
81
82
83
84
85
86
# File 'tmpsets/set/mod003-core/all/utils.rb', line 77

def measure desc
  $times ||= {}
  res = nil
  t = Benchmark.measure do
    res = yield
  end
  $times[desc] = $times.key?(desc) ? t + $times[desc] : t
  puts "#{desc}: #{t}".red
  res
end

#safe_update!(attribs) ⇒ Object

separate name and other attributes



65
66
67
68
# File 'tmpsets/set/mod003-core/all/utils.rb', line 65

def safe_update! attribs
  separate_name_update! attribs.delete("name") unless new?
  update! attribs if attribs.present?
end

#separate_name_update!(new_name) ⇒ Object



70
71
72
73
74
# File 'tmpsets/set/mod003-core/all/utils.rb', line 70

def separate_name_update! new_name
  return if new_name.to_s == name.to_s

  update! name: new_name
end