aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-11 15:32:19 -0700
committerAdam Vandenberg2013-06-11 15:32:22 -0700
commit6100f28176d7d3bf43a01275b61920f707f07cff (patch)
tree6a8c526552bb7849203c83b729aaf59f1337324a /Library
parent2bba5c3f073991683a6776e964099bb9d6a6afe8 (diff)
downloadhomebrew-6100f28176d7d3bf43a01275b61920f707f07cff.tar.bz2
Redact ree.
This formula has not been updated despite having a newer version upstream so assuming that it isn't installed via Homebrew anymore. Removing since there are multiple maintained ruby builder scripts out there for people who still want to install this version. Closes #20422.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ruby-enterprise-edition.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/Library/Formula/ruby-enterprise-edition.rb b/Library/Formula/ruby-enterprise-edition.rb
deleted file mode 100644
index ed1e9b2fa..000000000
--- a/Library/Formula/ruby-enterprise-edition.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-require 'formula'
-
-class RubyEnterpriseEdition < Formula
- homepage 'http://rubyenterpriseedition.com/'
- url 'http://rubyenterpriseedition.googlecode.com/files/ruby-enterprise-1.8.7-2011.03.tar.gz'
- sha1 '662f37afbe04f3a55ac3b119227a2cd4e53745bf'
-
- env :std
-
- option 'enable-shared', "Compile shared, but see caveats"
-
- depends_on 'readline'
-
- fails_with :llvm
-
- def install
- readline = Formula.factory('readline').prefix
-
- args = ["--auto", prefix, '--no-tcmalloc']
- args << '-c' << '--enable-shared' if build.include? 'enable-shared'
- # Configure will complain that this is an unknown option, but it is actually OK
- args << '-c' << "--with-readline-dir=#{readline}"
- system './installer', *args
- end
-
- 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.
-
- 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:
- brew install ruby-enterprise-edition --force --enable-shared
- EOS
- end
-end