[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

installing Ruby under Mac OS X

R. Mark Volkmann

1/25/2007 4:23:00 PM

I just downloaded the source for Ruby 1.8.5-p12 and built it under
Mac OS X using the following steps.

unzip and untar the downloaded file
cd to the directory createed by untarring
su root
/configure
make
make test - reports "test succeeded"
make install
make install-doc

When I run "ruby -v", I get "ruby 1.8.5 (2006-12-25 patchlevel 12)
[i686-darwin8.8.1]".
When I run "ruby -rrbconfig -e 'p Config::CONFIG["ruby_version"]'", I
get ".".
I should be getting "1.8.5". Am I doing something wrong in the way
I'm installing Ruby?

This is preventing me from installing gems. I get the following.
ERROR: While executing gem ... (ArgumentError)
install directory "/usr/local/lib/ruby/gems/./gems/
activesupport-1.4.0" not absolute

2 Answers

Drew Olson

1/25/2007 4:28:00 PM

0

Mark Volkmann wrote:
> I just downloaded the source for Ruby 1.8.5-p12 and built it under
> Mac OS X using the following steps.

Mark -

I can't speak to your specific error, but I had many issues with
building ruby from source on OS X. It's very painless, on the other
hand, to use macports to install the latest version of ruby.

-Drew


--
Posted via http://www.ruby-....

R. Mark Volkmann

1/25/2007 11:32:00 PM

0

On Jan 25, 2007, at 10:23 AM, Mark Volkmann wrote:

> I just downloaded the source for Ruby 1.8.5-p12 and built it under
> Mac OS X using the following steps.
>
> unzip and untar the downloaded file
> cd to the directory createed by untarring
> su root
> ./configure
> make
> make test - reports "test succeeded"
> make install
> make install-doc
>
> When I run "ruby -v", I get "ruby 1.8.5 (2006-12-25 patchlevel 12)
> [i686-darwin8.8.1]".
> When I run "ruby -rrbconfig -e 'p Config::CONFIG["ruby_version"]'",
> I get ".".
> I should be getting "1.8.5". Am I doing something wrong in the way
> I'm installing Ruby?
>
> This is preventing me from installing gems. I get the following.
> ERROR: While executing gem ... (ArgumentError)
> install directory "/usr/local/lib/ruby/gems/./gems/
> activesupport-1.4.0" not absolute

I fixed this by editing /usr/local/lib/ruby/i686-darwin8.8.1/
rbconfig.rb. Here are the lines I changed.

CONFIG["MAJOR"] = "1"
CONFIG["MINOR"] = "8"
CONFIG["TEENY"] = "5"

They were set to empty strings before my change and this was after a
clean install.

I can now install gems again!