Skip to content

Instantly share code, notes, and snippets.

@slave2zeros
Created January 30, 2014 18:16
Show Gist options
  • Save slave2zeros/8715145 to your computer and use it in GitHub Desktop.
Save slave2zeros/8715145 to your computer and use it in GitHub Desktop.
def titleize(x)
z = []
x.split.each.with_index(1) do |y, i|
if y.size > 3 or i == 1
z << y.capitalize
else
z << y
end
end
z.join(' ')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment