Module: CardConstant
- Defined in:
- lib/playing_cards/card_constant.rb
Instance Method Summary collapse
Instance Method Details
permalink #const_missing(name) ⇒ Object
[View source]
2 3 4 5 6 7 8 |
# File 'lib/playing_cards/card_constant.rb', line 2 def const_missing name if card = Card.parse(name) return card else Card end end |