Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/core_ext/string.rb

Instance Method Summary collapse

Instance Method Details

#indent(amount) ⇒ Object



4
5
6
# File 'lib/core_ext/string.rb', line 4

def indent(amount)
  gsub(/^/, " " * amount)
end