class String
  # Zwraca inn warto acucha, jeeli ten  jest pusty.
  def or_else(alternate)
    blank? ? alternate : self
  end
end

