A jóia nativa 'json' requer ferramentas de compilação instaladas

Eu tenhoruby 1.9.2p180 (2011-02-18) [i386-mingw32] instalado na minha máquina Windows 7. Agora, tentei instalar o JSON gem usando o comando "gem install json" e obtive o seguinte erro.

ERROR:  Error installing JSON:
    The 'json' native gem requires installed build tools.

Please update your PATH to include build tools or download the DevKit
from '[http://rubyinstaller.org/downloads][1]' and follow the instructions
at '[http://github.com/oneclick/rubyinstaller/wiki/Development-Kit][2]'

Em seguida, baixei o DevKit-4.5.0-20100819-1536-sfx.exe. Extraído para C: \ DevKit. E, a partir do prompt de comando, executei os seguintes comandos.

ruby dk.rb init

Após o comando acima ser executado, verifiquei que o config.yaml é gerado e o caminho para a minha pasta ruby é adicionado automaticamente. Esta é a linha na parte inferior do arquivo config.yaml "- C: / Ruby192"

ruby dk.rb review

Recebi a mensagem de que a funcionalidade do devkit será injetada nos rubis quando você executar "ruby dk.rb install"

ruby dk.rb install

Recebi a seguinte mensagem.

[INFO] RubyGems override already in place for C:/Ruby192, skipping.
[INFO] Installing C:/Ruby192/lib/ruby/site_ruby/devkit.rb

gora tentei executar a jóia JSON novamente usando o comandogem install json. Em seguida, recebeu a mesma mensagem de erro de antes.

ERROR:  Error installing JSON:
    The 'json' native gem requires installed build tools.........

Estou esquecendo de algo

questionAnswers(8)

yourAnswerToTheQuestion