aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2009-09-21 21:40:24 +0100
committerMax Howell2009-09-21 22:02:35 +0100
commit49429a9eb914d2eeef87c0f77bcbb4f1fd7dd94d (patch)
treedfe1177ff8dfb84060b13404b32c7c2d7702f562 /Library/Formula
parentd0999480fdbc7b05f28f93cffa11118df130b841 (diff)
downloadhomebrew-49429a9eb914d2eeef87c0f77bcbb4f1fd7dd94d.tar.bz2
Revert to Ruby 1.9
Old formulas are valid, but should be maintained in a separate branch if that's what is needed. The exact way we are going to do this is not yet agreed on.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ruby.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index 372e9596a..f51e718e5 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -3,9 +3,9 @@ require 'brewkit'
# TODO de-version the include and lib directories
class Ruby <Formula
- @url='ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p174.tar.gz'
+ @url='ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p243.tar.gz'
@homepage='http://www.ruby-lang.org/en/'
- @md5='18dcdfef761a745ac7da45b61776afa5'
+ @md5='515bfd965814e718c0943abf3dde5494'
def install
system "./configure", "--prefix=#{prefix}",
@@ -19,9 +19,9 @@ class Ruby <Formula
end
def skip_clean? path
- # TODO only skip the clean for the files that need it, we didn't even get
- # a comment about why we're skipping the clean, so you'll need to figure
- # that out too --mxcl
+ # TODO only skip the clean for the files that need it, we didn't get a
+ # comment about why we're skipping the clean, so you'll need to figure
+ # that out first --mxcl
true
end
end