module Namesgenerator

Constants

LEFT

Docker, starting from 0.7.x, generates names from notable scientists and hackers. Please, for any amazing man that you add to the list, consider adding an equally amazing woman to it, and vice versa.

VERSION

Public Class Methods

random_name() click to toggle source
# File lib/namesgenerator.rb, line 4
def self.random_name
  name = "%s_%s" % [LEFT.sample, RIGHT.sample]
  if name == "boring_wozniak" # Steve Wozniak is not boring
    random_name
  else
    name
  end
end