Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/git-bro/core_extensions.rb

Instance Method Summary collapse

Instance Method Details

#shortify(len = 40) ⇒ Object



15
16
17
18
19
20
21
# File 'lib/git-bro/core_extensions.rb', line 15

def shortify(len = 40)
  if self.length > len
    return self[0..len-1] + "..."
  end

  self
end