Skip to content

Instantly share code, notes, and snippets.

@jacqui
Created January 11, 2010 23:03
Show Gist options
  • Save jacqui/274704 to your computer and use it in GitHub Desktop.
Save jacqui/274704 to your computer and use it in GitHub Desktop.
truncated = sentences.inject(sentences.first) do |memo, sentence|
if memo.split.size < limit
memo.concat(" ").concat(sentence)
else
memo
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment