aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-enterprise-edition.rb
diff options
context:
space:
mode:
authorMax Howell2010-02-27 17:26:27 +0000
committerMax Howell2010-03-07 17:57:05 +0000
commitc4decd76fb353c9e8f0bcb07203f214434fc5395 (patch)
tree53c0ca16f2edca1237f2f5a42938cce2d0b31f08 /Library/Formula/ruby-enterprise-edition.rb
parent84ab27476cf79ac26200888108e6bef7ac6be852 (diff)
downloadhomebrew-c4decd76fb353c9e8f0bcb07203f214434fc5395.tar.bz2
String.undent for prettier HEREDOCs
Diffstat (limited to 'Library/Formula/ruby-enterprise-edition.rb')
-rw-r--r--Library/Formula/ruby-enterprise-edition.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/ruby-enterprise-edition.rb b/Library/Formula/ruby-enterprise-edition.rb
index cdc6696a0..fe2671a8e 100644
--- a/Library/Formula/ruby-enterprise-edition.rb
+++ b/Library/Formula/ruby-enterprise-edition.rb
@@ -16,18 +16,18 @@ class RubyEnterpriseEdition <Formula
system *args
end
- def caveats; <<-EOS
-By default we don't compile REE as a shared library. From their documentation:
+ def caveats; <<-EOS.undent
+ By default we don't compile REE as a shared library. From their documentation:
- Please note that enabling --enable-shared will make the Ruby interpreter
- about 20% slower.
+ Please note that enabling --enable-shared will make the Ruby interpreter
+ about 20% slower.
-For desktop environments (particularly ones requiring RubyCocoa) this is
-acceptable and even desirable.
+ For desktop environments (particularly ones requiring RubyCocoa) this is
+ acceptable and even desirable.
-If you need REE to be compiled as a shared library, you can re-compile like so:
+ If you need REE to be compiled as a shared library, you can re-compile like so:
- brew install ruby-enterprise-edition --force --enable-shared
+ brew install ruby-enterprise-edition --force --enable-shared
EOS
end
end