Sha256: fe435ec6a7037fc8cf70b9b22ff984fb735ca89019901222dcfe588a451ef27e
Contents?: true
Size: 1.47 KB
Versions: 9
Compression:
Stored size: 1.47 KB
Contents
# -*- encoding : utf-8 -*- class Card; module Set; class All # Set: All cards (Initialize) # module Initialize; extend Card::Set def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/initialize.rb"; end JUNK_INIT_ARGS = %w[missing skip_virtual id].freeze module ClassMethods def new args={}, _options={} args = (args || {}).stringify_keys JUNK_INIT_ARGS.each { |a| args.delete(a) } %w[type type_code].each { |k| args.delete(k) if args[k].blank? } args.delete("content") if args["attach"] # should not be handled here! super args end end def initialize args={} args["name"] = initial_name args["name"] args["db_content"] = args.delete "content" if args["content"] @supercard = args.delete "supercard" # must come before name= handle_skip_args args do super args # ActiveRecord #initialize end self end def handle_skip_args args skip_modules = args.delete "skip_modules" skip_type_lookup = args["skip_type_lookup"] yield self.type_id = get_type_id_from_structure if !type_id && !skip_type_lookup include_set_modules unless skip_modules end def initial_name name return name if name.is_a? String Card::Name[name].to_s end def include_set_modules unless @set_mods_loaded set_modules.each do |m| singleton_class.send :include, m end assign_set_specific_attributes @set_mods_loaded = true end self end end;end;end;end; # ~~ generated from /Users/ethan/dev/decko/gem/card/mod/core/set/all/initialize.rb ~~
Version data entries
9 entries across 9 versions & 1 rubygems