Search code examples
ruby-on-railsrubymacososx-mavericksrbenv

Can't install a ruby version with rbenv on new Macbook Air mac osx 10.9.4


I bought a new Macbook Air (July 2014) and I'm trying to restore some projects built with Rails.

The only actual Ruby is the System one.

My config:

  • OSX 10.9.4
  • Cxode installed : xcode-select version 2333.
  • Homebrew 0.9.5
  • rbenv 0.4.0
  • ruby-build 20140702

The errors:

My Stack trace when I try to install the last ruby (2.1.2):

rbenv install 2.1.2                         
Downloading ruby-2.1.2.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/f22a6447811a81f3c808d1c2a5ce3b5f5f0955c68c9a749182feb425589e6635
Installing ruby-2.1.2...
mkdir: /usr/local/bin/rbenv/versions/2.1.2/lib: Not a directory

BUILD FAILED

Inspect or clean up the working tree at /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296
Results logged to /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296.log

Last 10 log lines:
x ruby-2.1.2/insns_info.inc
x ruby-2.1.2/vm.inc
x ruby-2.1.2/thread.c
x ruby-2.1.2/regcomp.c
x ruby-2.1.2/encdb.h
x ruby-2.1.2/GPL
x ruby-2.1.2/vmtc.inc
x ruby-2.1.2/probes_helper.h
x ruby-2.1.2/ruby_atomic.h
/var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296/ruby-2.1.2 /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715154952.19296 ~/Sites/my_project
rm: /usr/local/bin/rbenv/versions/2.1.2: Not a directory

My Stack trace when I try to install the last patched ruby 2.0.0 (to replace the system one which is p451 instead of p481):

rbenv install 2.0.0-p481    
Downloading ruby-2.0.0-p481.tar.gz...
-> http://dqw8nmjcqpjn7.cloudfront.net/00dd3d72435eb77f2bd94537c1738e5219ca42b6d68df3d4f20c183f4bd12d0f Installing ruby-2.0.0-p481...

BUILD FAILED

Inspect or clean up the working tree at /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715155606.19406 
Results logged to /var/folders/s_/8fwdv8c52q12dy5dd69xjc2r0000gn/T/ruby-build.20140715155606.19406.log

Last 10 log lines:  from ./tool/rbinstall.rb:192:in `makedirs'  
  from ./tool/rbinstall.rb:296:in `prepare'     
  from ./tool/rbinstall.rb:335:in `block in <main>'     
  from ./tool/rbinstall.rb:774:in `call'    
  from ./tool/rbinstall.rb:774:in `block (2 levels) in <main>'  
  from ./tool/rbinstall.rb:771:in `each'    
  from ./tool/rbinstall.rb:771:in `block in <main>'     
  from ./tool/rbinstall.rb:767:in `each'    
  from ./tool/rbinstall.rb:767:in `<main>' 
make: *** [do-install-all] Error 1 
rm: /usr/local/bin/rbenv/versions/2.0.0-p481: Not a directory

Some more config details:

brew list
autoconf    gettext     git     openssl     ossp-uuid   pkg-config  postgresql  rbenv       readline    ruby-build  sip

Rbenv & Sytem's Ruby version:

rbenv versions
* system (set by /usr/local/Cellar/rbenv/version)

ruby -v
ruby 2.0.0p451 (2014-02-24 revision 45167) [universal.x86_64-darwin13]

The end of my my .zshrc:

export PATH=~/.rbenv/shims:$PATH
# Set up rbenv for Homebrew. Make sure path is BEFORE Homebrew's /usr/local/[s]bin
#To enable shims and autocompletion add to your profile:
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi

eval "$(rbenv init -)"

source ~/.profile

And the end of my .profile:

# export RBENV_ROOT=/usr/local/bin/rbenv
export RBENV_ROOT=/usr/local/Cellar/rbenv/

I tried this : rbenv install ruby BUILD FAILED but it didn't change anything.

Any ideas?


Solution

  • Uninstalling XCode for dev tools didn't work.

    Using brew link openssl --force didn't work.

    Using the CONFIGURE_OPTS with openssl didn't work.

    But RUBY_CONFIGURE_OPTS worked :

    RUBY_CONFIGURE_OPTS="--with-openssl-dir=/usr/local/Cellar/openssl/1.0.1h" rbenv install 2.1.2
    

    YEAH BABY !