Class: Card::Name
- Inherits:
-
Cardname
- Object
- Cardname
- Card::Name
show all
- Includes:
- NameVariants
- Defined in:
- lib/card/name.rb,
lib/card/name/all.rb,
lib/card/name/all/parts.rb,
lib/card/name/card_class.rb,
lib/card/name/name_variants.rb,
lib/card/name/all/descendants.rb more...
Overview
The Cardname class provides generalized of Card naming patterns (compound names, key-based variants, etc) and can be used independently of Card objects.
Name adds support for deeper integration with Card objects
Defined Under Namespace
Modules: All, CardClass, NameVariants
Constant Summary
collapse
- ID_MARK_RE =
/^~(?<id>\d+)$/
- CODENAME_MARK_RE =
/^:(?<codename>\w+)$/
Class Method Summary
collapse
Instance Method Summary
collapse
#alternative, #card, #card_id, #codename, #codename_or_string, #standard, #vary
Class Method Details
[View source]
20
21
22
23
|
# File 'lib/card/name.rb', line 20
def [] *cardish
cardish = cardish.first if cardish.size <= 1
from_cardish(cardish) || unsupported_class!(cardish)
end
|
.compose(parts) ⇒ Object
interprets symbols/integers as codenames/ids
[View source]
48
49
50
|
# File 'lib/card/name.rb', line 48
def compose parts
new_from_parts(parts) { |part| self[part] }
end
|
.id_from_string(string) ⇒ Integer or nil
translates string identifiers into an id:
- string id notation (eg "~75")
- string codename notation (eg ":options")
[View source]
58
59
60
61
62
63
|
# File 'lib/card/name.rb', line 58
def id_from_string string
case string
when ID_MARK_RE then Regexp.last_match[:id].to_i
when CODENAME_MARK_RE then Card::Codename.id! Regexp.last_match[:codename]
end
end
|
.id_from_string!(string) ⇒ Object
[View source]
65
66
67
68
69
|
# File 'lib/card/name.rb', line 65
def id_from_string! string
return unless (id = id_from_string string)
Lexicon.name(id) ? id : bad_mark(string)
end
|
.new(str, validated_parts = nil) ⇒ Object
[View source]
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/card/name.rb', line 33
def new str, validated_parts=nil
return compose str if str.is_a?(Array)
str = str.to_s
if !validated_parts && str.include?(joint)
new_from_compound_string str
elsif (id = id_from_string str) from_id_from_string id, str
else
super str
end
end
|
.session ⇒ Object
[View source]
25
26
27
|
# File 'lib/card/name.rb', line 25
def session
Card::Auth.current.name end
|
Instance Method Details
#rstar? ⇒ Boolean
[View source]
119
120
121
|
# File 'lib/card/name.rb', line 119
def rstar?
right && right[0, 1] == "*"
end
|
#star? ⇒ Boolean
[View source]
115
116
117
|
# File 'lib/card/name.rb', line 115
def star?
simple? && s[0, 1] == "*"
end
|