16 lines
224 B
Ruby
Raw Normal View History

2010-02-27 17:26:27 +00:00
class String
def undent
gsub /^.{#{slice(/^ +/).length}}/, ''
end
end
if __FILE__ == $0
undented = <<-EOS.undent
hi
....my friend over
there
EOS
assert undented == "hi\nmy friend over\nthere\n"
end