diff options
| author | Markus Reiter | 2017-10-15 02:38:10 +0200 |
|---|---|---|
| committer | Markus Reiter | 2017-10-18 14:39:09 +0200 |
| commit | 487bec957007612956ff97b3912f88768becaa32 (patch) | |
| tree | e795eb773ea03778c59e05fdcb62b7100aa3ebaa /Library/Homebrew/compat | |
| parent | 9bee9ca5757d1c5f720787737fed6a534a620d72 (diff) | |
| download | brew-487bec957007612956ff97b3912f88768becaa32.tar.bz2 | |
Move `String#undent` to `compat`.
Diffstat (limited to 'Library/Homebrew/compat')
| -rw-r--r-- | Library/Homebrew/compat/extend/string.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Homebrew/compat/extend/string.rb b/Library/Homebrew/compat/extend/string.rb new file mode 100644 index 000000000..6069a6bec --- /dev/null +++ b/Library/Homebrew/compat/extend/string.rb @@ -0,0 +1,18 @@ +class String + def undent + gsub(/^[ \t]{#{(slice(/^[ \t]+/) || '').length}}/, "") + end + alias unindent undent + + # eg: + # if foo then <<-EOS.undent_________________________________________________________72 + # Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + # eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad + # minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip + # ex ea commodo consequat. Duis aute irure dolor in reprehenderit in + # voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur + # sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt + # mollit anim id est laborum. + # EOS + alias undent_________________________________________________________72 undent +end |
