Method: CardsLib::Ranker#ranker
- Defined in:
- lib/cards_lib/ranker.rb
#ranker(rank_face = @rank) ⇒ Object
19 20 21 22 23 24 25 |
# File 'lib/cards_lib/ranker.rb', line 19 def ranker(rank_face = @rank) if @rank_lookup @rank_lookup.(rank_face) else ranks.index(rank_face).to_i + 1 end end |