Class: Card::Name

Inherits:
Cardname
  • Object
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

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

Class Method Summary collapse

Instance Method Summary collapse

Methods included from NameVariants

#alternative, #card, #card_id, #codename, #codename_or_string, #standard, #vary

Class Method Details

.[](*cardish) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
# File 'lib/card/name.rb', line 16

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

interprets symbols/integers as codenames/ids



51
52
53
# File 'lib/card/name.rb', line 51

def compose parts
  new_from_parts(parts) { |part| self[part] }
end

.new(str, validated_parts = nil) ⇒ Object



36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/card/name.rb', line 36

def new str, validated_parts=nil
  return compose str if str.is_a?(Array)

  str = str.to_s

  if !validated_parts && str.include?(joint)
    string_compose Cardname.split_parts(str)
  elsif (id = Card.id_from_string str)  # handles ~[id] and :[codename]
    Card.name_from_id_from_string id, str
  else
    super str
  end
end

.paramsObject



32
33
34
# File 'lib/card/name.rb', line 32

def params
  Card::Env.params
end

.sessionObject



28
29
30
# File 'lib/card/name.rb', line 28

def session
  Card::Auth.current.name # also_yuck
end

Instance Method Details

#rstar?Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/card/name.rb', line 71

def rstar?
  right && right[0, 1] == "*"
end

#star?Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/card/name.rb', line 67

def star?
  simple? && s[0, 1] == "*"
end