aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-06-22 14:37:29 -0700
committerAdam Vandenberg2011-06-22 14:37:29 -0700
commitb21738876172eeef5614bc6f6e8792407584784f (patch)
treecaeaa6f01d6862a176a5b5de6cff397201670696
parent50854b06a7c0d5726b862724dcae2d51174a17b2 (diff)
downloadhomebrew-b21738876172eeef5614bc6f6e8792407584784f.tar.bz2
Redact Redcar.
This editor is now installable via a Gem, and the Hombrew formula is quite out of date, so remove.
-rw-r--r--Library/Formula/redcar.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/Library/Formula/redcar.rb b/Library/Formula/redcar.rb
deleted file mode 100644
index 608451f48..000000000
--- a/Library/Formula/redcar.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-require 'formula'
-
-class Redcar < Formula
- head 'https://github.com/danlucraft/redcar.git'
- homepage 'https://github.com/danlucraft/redcar'
-
- depends_on 'jruby'
- depends_on 'cucumber' => :jruby
-
- def install
- puts "You need the RSpec gem installed under JRuby or this will not work."
-
- system "jruby bin/redcar install"
- system "jruby -S rake build"
- libexec.install ['bin', 'lib', 'plugins', 'textmate', 'vendor']
-
- (bin+'redcar').write <<-EOS
-#!/bin/bash
-jruby -J-XstartOnFirstThread \"#{libexec}/bin/redcar\"
-EOS
- chmod 0555, (bin+'redcar')
- end
-end