Class: Guignol::Commands::UUID

Inherits:
Object
  • Object
show all
Defined in:
lib/guignol/commands/uuid.rb

Instance Method Summary collapse

Instance Method Details

#run(count = 1) ⇒ Object



22
23
24
25
26
# File 'lib/guignol/commands/uuid.rb', line 22

def run(count = 1)
  count.times do
    puts UUIDTools::UUID.random_create.to_s.upcase
  end
end