Lo he ruby 1.9.2p180 (2011-02-18) [i386-mingw32]
instalado en mi máquina con Windows 7. Ahora intenté instalar la gema JSON usando el comando "gem install json" y obtuve el siguiente error.
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]'
Luego fui y descargué DevKit-4.5.0-20100819-1536-sfx.exe. Lo extrajo a C: \ DevKit. Y luego, desde el símbolo del sistema, ejecuté los siguientes comandos.
ruby dk.rb init
Después de ejecutar el comando anterior, verifiqué que config.yaml se genera y tiene la ruta para mi carpeta ruby agregada automáticamente. Esta es la línea en la parte inferior del archivo config.yaml "- C: / Ruby192"
ruby dk.rb review
Recibí el mensaje de que la funcionalidad devkit se inyectará en los rubíes cuando ejecutes "ruby dk.rb install"
ruby dk.rb install
Recibí el siguiente mensaje.
[INFO] RubyGems override already in place for C:/Ruby192, skipping.
[INFO] Installing C:/Ruby192/lib/ruby/site_ruby/devkit.rb
Ahora intenté ejecutar la gema JSON nuevamente usando el comando gem install json
. Luego recibí el mismo mensaje de error que antes.
ERROR: Error installing JSON:
The 'json' native gem requires installed build tools.........
¿Me estoy perdiendo de algo?