It seems that the problem is that the 64-bit version of Ruby 2.0.0 creates a registry entry in a location unknown to the devkit script (dk.rb) ('Software \ Wow6432Node \ RubyInstaller \ MRI ").
Until the Devkit installer is updated, you can make this installation work by opening% DevKitExtractionDir% \ dk.rb in a text editor and changing the REG_KEYS array to include the 64-bit registry path, so it looks like this:
REG_KEYS = [ 'Software\RubyInstaller\MRI', 'Software\RubyInstaller\Rubinius', 'Software\Wow6432Node\RubyInstaller\MRI' ]
Dr.Seuss Jun 17 '13 at 13:40 2013-06-17 13:40
source share