Sha256: 80b391db7f950f3b8601a07735dc320afeecfb4df37a7a1e09f2b0a945a3be96

Contents?: true

Size: 1.47 KB

Versions: 6

Compression:

Stored size: 1.47 KB

Contents

class String
  # Truncates a given +text+ after a given <tt>length</tt> if +text+ is longer than <tt>length</tt>:
  #
  #   "Once upon a time in a world far far away".truncate(27)
  #   # => "Once upon a time in a wo..."
  #
  # The last characters will be replaced with the <tt>:omission</tt> string (defaults to "...")
  # for a total length not exceeding <tt>:length</tt>:
  #
  #   "Once upon a time in a world far far away".truncate(27, :separator => ' ')
  #   # => "Once upon a time in a..."
  #
  # Pass a <tt>:separator</tt> to truncate +text+ at a natural break:
  #
  #   "And they found that many people were sleeping better.".truncate(25, :omission => "... (continued)")
  #   # => "And they f... (continued)"
  def truncate(length, options = {})
    text = self.dup
    chars        = text.respond_to?(:mb_chars)      ? text.mb_chars            : text.chars
    omission     = options[:omission] || "..."
    omission_len = omission.respond_to?(:mb_chars)  ? omission.mb_chars.length : omission.length
    length_with_room_for_omission = length - omission_len

    if (separator = options[:separator])
      separator_chars = separator.respond_to?(:mb_chars) ? separator.to_s.mb_chars  : separator.to_s.chars
      stop = chars.rindex(separator_chars, length_with_room_for_omission) || length_with_room_for_omission
    else
      stop = length_with_room_for_omission
    end

    (chars.length > length ? chars[0...stop] + omission : text).to_s
  end unless method_defined?(:truncate)
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gorillib-0.0.7 lib/gorillib/string/truncate.rb
gorillib-0.0.6 lib/gorillib/string/truncate.rb
gorillib-0.0.5 lib/gorillib/string/truncate.rb
gorillib-0.0.4 lib/gorillib/string/truncate.rb
gorillib-0.0.3 lib/gorillib/string/truncate.rb
gorillib-0.0.2 lib/gorillib/string/truncate.rb