Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used to have no problems at all with ruby, gems and all related stuff. But after installing X Code Developer Tools and upgrading to Lion the gems do not install.

I get the following error for every gem. This is the message for sqlite as an example:

Building native extensions.  This could take a while...
ERROR:  Error installing sqlite3:
ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby extconf.rb
mkmf.rb can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h

Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/sqlite3-1.3.4/ext/sqlite3/gem_make.out

What went wrong? How to fix it?

share|improve this question

7 Answers

I had to install the Command Line Tools in the latest Xcode-Version (4.3.1) and

sudo gem install rails

worked like a charm.

To install Command Line Tools, go to XCode Preferences > Downloads.

share|improve this answer
2  
this worked for me too – chendriksen Apr 20 '12 at 12:53
+1 - same here! – Bungle Jul 25 '12 at 18:00
4  
Yep. To install Command Line Tools, go to XCode Preferences > Downloads. – mattandrews Sep 7 '12 at 2:55

I faced same problem while trying to install rails on my Lion. This is how i could solve it.

Install rvm

$ curl https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer | bash -s stable

Install osx-gcc-installer

https://github.com/kennethreitz/osx-gcc-installer

Installed new version of ruby

rvm install 1.9.3

Typed to following command to show the requirements

rvm requirements

To use an RVM installed Ruby as default, instead of the system ruby:

rvm system ; rvm gemset export system.gems ; rvm 1.9.3 ; rvm gemset import system.gems # migrate your gems rvm alias create default 1.9.3

Installed rails:

sudo gem install rails

My Mac is now read for rails!! YAY!!

share|improve this answer

Not a direct solution to your problem, but I'd suggest using rvm to install fresh rubies and gems. That should take care of it.

share|improve this answer
RVM works great, I have it on Lion with zero issues – jschorr Sep 19 '11 at 12:11

While installing Rails I had the error :

can't find header files for ruby at /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/ruby.h

As i had already Xcode installed, I had just to install Command Line Tools to resolve this problem

share|improve this answer

You need to have XCode installed, it includes ruby.h as well as some other important files needed to compile other native gems.

share|improve this answer
1  
Welcom to SO. If i read the OP's question correct, he stateds he has XCode installed. – Don Question Nov 8 '12 at 22:13

Hello i'm sorry i can't test this answer but i would suggest to change the default search paths in your bashrc and extconf.rb since the Library files seem to be moved in Lion.

(P.S. if he wants to work with the default 1.8 Version, rvm would be an unneeded hassle)

share|improve this answer
How and where can I do this? – d135-1r43 Sep 17 '11 at 11:59
You open up a Terminalwindow, choose your favorite Editor, and edit your .bashrc (usually in the path /Users/<Your Username>/.bashrc) – robustus Sep 17 '11 at 12:12
I know how to do that. I just do not know which path I should add there. – d135-1r43 Sep 17 '11 at 12:13
Oh sorry i misunderstood: I'd suggest: /System/Library/Frameworks/Ruby.framework/Versions/1.8/ – robustus Sep 17 '11 at 12:18

Update to the latest version of xcode, that fixed the problem for me. Make sure xcodebuild is in your path.

running xcodebuild -version in a terminal window should output 4.2.1 (4.x at least).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.