Class: Ruboty::Actions::Slot

Inherits:
Base
  • Object
show all
Defined in:
lib/ruboty/actions/slot.rb

Instance Method Summary collapse

Instance Method Details

#callObject



5
6
7
8
9
10
11
12
# File 'lib/ruboty/actions/slot.rb', line 5

def call
  slot_machine = Ruboty::Slot::GumFruit.new
  slot_machine.pull_lever
  slot_machine.reels.count.times do |n|
    slot_machine.push_stop_button(n)
  end
  message.reply("#{$/}#{slot_machine.to_s}")
end