I\'m trying to install Ruby with TK support.
Using RVM, I did this:
rvm install 1.9.2 -C --enable-shared --enable-pthread
The inst
RVM disables tk/tcl by default (problems on OS X), you need to tell ruby (via rvm) you want tk/tcl:
rvm install 1.9.2 --enable-shared --enable-pthread --with-tk --with-tcl
First, install ActiveState's ActiveTCL from here. Then, reinstall Ruby with this command:
rvm reinstall 1.9.2 --enable-pthread