Class: Cribbage::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/cribbage/cli.rb

Instance Method Summary collapse

Instance Method Details

#count(*cards) ⇒ Object



6
7
8
9
10
11
12
13
14
15
# File 'lib/cribbage/cli.rb', line 6

def count(*cards)

  if cards.size != 5
    Console.error "You must input 5 cards"
    exit
  end

  hand = Cribbage::Hand.new(cards)
  hand.print_score
end