Trying to install rubyOSA on my iMac

sudo gem install rubyosa

I get the following error:

ERROR:  Error installing rubyosa:
    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/rubyosa-0.4.0 for inspection.
Results logged to /Library/Ruby/Gems/1.8/gems/rubyosa-0.4.0/gem_make.out
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

I've had this error show a lot of times while installing gems. I found out later that I needed the development package that included all the needed headers for compilation. On a debian machine they are in the ruby-dev package.

I was reading on the Internet that OS X ships the headers with XCode, so you might need to get them from there.

I found this link that might be of help to you: http://www.fngtps.com/2009/08/missing-ruby-headers-after-snow-leopard-upgrade

link|improve this answer
The "Missing ruby headers after snow leopard upgrade" link was it. Thanks. – tybro0103 Sep 21 '10 at 16:13
feedback

I just found this GitHub project that allows compiling and installation on Snow Leopard. It installed cleanly for me and I was able to check a quick "require 'rbosa'" in irb:

irb(main):001:0> require 'rbosa'
=> true
irb(main):002:0> app = OSA.app('iTunes')
=> <OSA::ITunes::Application:0x102aae648 desc="'sign'($6B6F6F68$)">
irb(main):003:0> puts app.current_track.name
The Pipeline 3: Jason Fried
=> nil
irb(main):004:0> 
link|improve this answer
feedback

Worked for me on Snow Leopard by installing the pbosetti-rubyosa gem, checkout http://github.com/pbosetti/rubyosa

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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