Class: Card::Name
- Inherits:
-
Cardname
- Object
- Cardname
- Card::Name
show all
- Includes:
- FieldsAndTraits, NameVariants
- Defined in:
- lib/card/name.rb,
lib/card/name/name_variants.rb,
lib/card/name/fields_and_traits.rb
Overview
The Cardname class provides generalized of Card naming patterns
(compound names, key-based variants, etc)
Card::Name adds support for deeper card integration
Defined Under Namespace
Modules: FieldsAndTraits, NameVariants
Class Method Summary
collapse
Instance Method Summary
collapse
#vary
#field, #field_name, #field_of?, #field_only?, #relative_field_name, #trait, #trait_name, #trait_name?
Class Method Details
.[](*cardish) ⇒ Object
19
20
21
22
23
24
25
26
27
28
29
|
# File 'lib/card/name.rb', line 19
def [] *cardish
cardish = cardish.first if cardish.size <= 1
case cardish
when Card then cardish.name
when Symbol, Integer then Card.fetch_name(cardish)
when Array then compose cardish
when String, NilClass then new cardish
else
raise ArgumentError, "#{cardish.class} not supported as name identifier"
end
end
|
.compose(parts) ⇒ Object
48
49
50
51
|
# File 'lib/card/name.rb', line 48
def compose parts
name_parts = parts.flatten.map { |part| self[part] }
new name_parts.join(joint), true
end
|
.new(str, validated_parts = nil) ⇒ Object
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/card/name.rb', line 31
def new str, validated_parts=nil
return compose str if str.is_a?(Array)
str = str.to_s
if !validated_parts && str.include?(joint)
compose Cardname.split_parts(str)
elsif special_prefix?(str)
Card.fetch_name str
else
super str
end
end
|
.special_prefix?(str) ⇒ Boolean
44
45
46
|
# File 'lib/card/name.rb', line 44
def special_prefix? str
str.start_with? "~", ":"
end
|
.url_key_to_standard(key) ⇒ Object
53
54
55
|
# File 'lib/card/name.rb', line 53
def url_key_to_standard key
key.to_s.tr "_", " "
end
|
Instance Method Details
#code ⇒ Object
66
67
68
|
# File 'lib/card/name.rb', line 66
def code
Card::Codename[Card.fetch_id self]
end
|
#rstar? ⇒ Boolean
62
63
64
|
# File 'lib/card/name.rb', line 62
def rstar?
right && "*" == right[0, 1]
end
|
#set? ⇒ Boolean
74
75
76
|
# File 'lib/card/name.rb', line 74
def set?
Set::Pattern.card_keys[tag_name.key]
end
|
#setting? ⇒ Boolean
70
71
72
|
# File 'lib/card/name.rb', line 70
def setting?
Set::Type::Setting.member_names[key]
end
|
#star? ⇒ Boolean
58
59
60
|
# File 'lib/card/name.rb', line 58
def star?
simple? && "*" == s[0, 1]
end
|