# File lib/deltacloud/core_ext/string.rb, line 31
  def titlecase
    gsub(/\b\w/){ $`[-1,1] == "'" ? $& : $&.upcase }
  end