Class: Die
Instance Attribute Summary collapse
-
#number ⇒ Object
readonly
Returns the value of attribute number.
Instance Method Summary collapse
-
#initialize ⇒ Die
constructor
A new instance of Die.
- #roll ⇒ Object
Methods included from Auditable
Constructor Details
#initialize ⇒ Die
Returns a new instance of Die.
7 8 9 |
# File 'lib/dry_game/die.rb', line 7 def initialize roll end |
Instance Attribute Details
#number ⇒ Object (readonly)
Returns the value of attribute number.
5 6 7 |
# File 'lib/dry_game/die.rb', line 5 def number @number end |
Instance Method Details
#roll ⇒ Object
10 11 12 |
# File 'lib/dry_game/die.rb', line 10 def roll @number = rand(1..6) end |