class Raymonator::WordCompiler

Public Instance Methods

raymonate() click to toggle source
# File lib/raymonator.rb, line 5
def raymonate
  puts "#{first_word}#{last_word}".capitalize
end

Private Instance Methods

first_word() click to toggle source
# File lib/raymonator.rb, line 11
def first_word
  %w(
    dak
    baksteen
    zakke
    takke
    laffe
    schappe
    tandpasta
  ).sample
end
last_word() click to toggle source
# File lib/raymonator.rb, line 23
def last_word
  %w(
    dekker
    wasser
    flapper
    nakker
    baffer
    kapper
    zapper
    rapper
    japper
    blaffer
    vuller
    tapper
  ).sample
end