Sha256: 8b663dcd1392898c72e6e563f0853e6d8cdadd897181835585a086756e2cfde4

Contents?: true

Size: 184 Bytes

Versions: 5

Compression:

Stored size: 184 Bytes

Contents

class String

  # Title case.
  #
  #   "this is a string".titlecase
  #   => "This Is A String"
  #
  # CREDIT: Eliazar Parra

  def titlecase
    gsub(/\b\w/){$&.upcase}
  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
facets-2.7.0 lib/core/facets/string/titlecase.rb
facets-2.6.0 lib/core/facets/string/titlecase.rb
facets-2.5.0 lib/core/facets/string/titlecase.rb
facets-2.5.1 lib/core/facets/string/titlecase.rb
facets-2.5.2 lib/core/facets/string/titlecase.rb