durfdoen-2.0/lib/helpers/util.rb

16 lines
410 B
Ruby
Raw Normal View History

2020-09-10 00:28:10 +02:00
module UtilHelper
# def truncate(string, max=30)
# string.length > max ? "#{string[0...max]}..." : string
# end
def truncate(string, max=20, delim=" ")
parts = string.split(delim)
parts.length > max ?
parts[0..max].join(delim) + "..." : string
end
def make_some(string, backup=" ")
string.strip().length > 0 ? string : backup
end
end