Module: Central::Machine::RandomName

Instance Method Summary collapse

Instance Method Details

#generate_nameObject



4
5
6
7
8
# File 'lib/central/machine/random_name.rb', line 4

def generate_name
  rnd1 = Random.rand(64)
  rnd2 = Random.rand(64)
  "#{adjectives[rnd1 % adjectives.length]}-#{nouns[rnd2 % adjectives.length]}"
end