Sha256: 2d7e0a379a154350fa2a5f03e18c50c69d33630348626486f5e02cd631b06850

Contents?: true

Size: 181 Bytes

Versions: 50

Compression:

Stored size: 181 Bytes

Contents

# frozen_string_literal: true

module Ree::Contracts
  module Truncatable
    def truncate(str, limit = 80)
      str.length > limit ? "#{str[0..limit]}..." : str
    end
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
ree-1.1.1 lib/ree/contracts/truncatable.rb
ree-1.1.0 lib/ree/contracts/truncatable.rb
ree-1.0.47 lib/ree/contracts/truncatable.rb
ree-1.0.46 lib/ree/contracts/truncatable.rb
ree-1.0.45 lib/ree/contracts/truncatable.rb
ree-1.0.44 lib/ree/contracts/truncatable.rb
ree-1.0.43 lib/ree/contracts/truncatable.rb
ree-1.0.42 lib/ree/contracts/truncatable.rb
ree-1.0.41 lib/ree/contracts/truncatable.rb
ree-1.0.40 lib/ree/contracts/truncatable.rb
ree-1.0.39 lib/ree/contracts/truncatable.rb
ree-1.0.38 lib/ree/contracts/truncatable.rb
ree-1.0.37 lib/ree/contracts/truncatable.rb
ree-1.0.36 lib/ree/contracts/truncatable.rb
ree-1.0.35 lib/ree/contracts/truncatable.rb
ree-1.0.34 lib/ree/contracts/truncatable.rb
ree-1.0.33 lib/ree/contracts/truncatable.rb
ree-1.0.32 lib/ree/contracts/truncatable.rb
ree-1.0.31 lib/ree/contracts/truncatable.rb
ree-1.0.30 lib/ree/contracts/truncatable.rb