(2013.7.3 追記;
 Ruby 2.0.0-p247 では、インストールできました!)


Mac で Ruby/SDL を使う際に必要な
rsdl ですが;

$ gem install rsdl

で、Ruby 2.0.0-p.195 ではエラーになってしまい、インストールできませんでした。
1.9.3-p.429 ではインストールできます。
(OS X  Mountain Lion10.8.4 、Lion 10.7.5 ともに)

参考)2.0.0 以前だと、gem install rsdl でできていたけど…
Mac OS X Lion にゲームライブラリ Ruby/SDL インストールではまった


困った。
とりあえずは、1.9.3-p.429 を使います。
→・Mac に Ruby/SDL、rsdl、SGE を入れて、MyGame ゲームライブラリを動かす


(ログ)
------------------------------------------------------------------------------
$ gem install rsdl
Building native extensions.  This could take a while...
ERROR:  Error installing rsdl:
ERROR: Failed to build gem native extension.

    /Users/user0/.rbenv/versions/2.0.0-p195/bin/ruby extconf.rb
extconf.rb:11:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:11:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:12:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:13:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:14:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:15:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:19:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:20:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:23:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:24:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:25:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
extconf.rb:26:in `<main>': Use RbConfig instead of obsolete and deprecated Config.
checking for ruby_sysinit()... yes
checking for ruby_run_node()... yes
creating Makefile
creating rsdl.c

make
clang -O3 -Wno-error=shorten-64-to-32  -pipe -I"/" -I"/x86_64-darwin12.3.0" -I/usr/local/include/SDL -D_GNU_SOURCE=1 -D_THREAD_SAFE -c rsdl.c
rsdl.c:2:10: fatal error: 'ruby.h' file not found
#include <ruby.h>
         ^
1 error generated.
make: *** [rsdl.o] Error 1


Gem files will remain installed in /Users/user0/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/rsdl-0.1.4 for inspection.
Results logged to /Users/user0/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/rsdl-0.1.4/./gem_make.out
------------------------------------------------------------------------------