Skip to content

Instantly share code, notes, and snippets.

@sbeckeriv
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save sbeckeriv/9c3ced686acf08e78d42 to your computer and use it in GitHub Desktop.

Select an option

Save sbeckeriv/9c3ced686acf08e78d42 to your computer and use it in GitHub Desktop.
Ruby ellipse
class String
def …(max_length = 30)
self.size > max_length ? self[0..max_length]+"…" : self
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment