Module: Card::Set::All::Type
- Extended by:
- Card::Set
- Defined in:
- tmpsets/set/mod003-core/all/type.rb
Overview
Set: All cards (Type)
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
- #get_type_id_from_structure ⇒ Object
- #type=(type_name) ⇒ Object
- #type_card ⇒ Object
- #type_cardname ⇒ Object
- #type_code ⇒ Object
- #type_known? ⇒ Boolean
- #type_name ⇒ Object (also: #type)
- #type_name_or_default ⇒ Object
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/type.rb', line 7 def self.source_location; "/Users/ethan/dev/decko/gem/card/mod/core/set/all/type.rb"; end |
Instance Method Details
#get_type_id_from_structure ⇒ Object
46 47 48 49 50 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 46 def get_type_id_from_structure return unless name && (t = template) reset_patterns # still necessary even with new template handling? t.type_id end |
#type=(type_name) ⇒ Object
38 39 40 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 38 def type= type_name self.type_id = Card.fetch_id type_name end |
#type_card ⇒ Object
15 16 17 18 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 15 def type_card return if type_id.nil? Card.quick_fetch type_id.to_i end |
#type_cardname ⇒ Object
34 35 36 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 34 def type_cardname type_card.try :name end |
#type_code ⇒ Object
20 21 22 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 20 def type_code Card::Codename[type_id.to_i] end |
#type_known? ⇒ Boolean
42 43 44 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 42 def type_known? type_id.present? end |
#type_name ⇒ Object Also known as: type
24 25 26 |
# File 'tmpsets/set/mod003-core/all/type.rb', line 24 def type_name type_card.try :name end |