Pregunta

posible duplicado:
Ruby 1.9 - No hay un archivo para cargar 'Win32 / Open3'

Estoy teniendo un problema con Jammit Gem.Cuando corro "Rake", recibo un mensaje que me dice, hay un problema, parte del mensaje:

$ rake -t (en C: / ruby187 / prueba) ¡Rake abortado! No hay tal archivo para cargar - Win32 / Open3 C: /Ruby187/LIB/RUBY/GEMS/1.8/GEMS/activesupport-3.0.6/lib/Active_Support/Dependences.rb: 239 : en requerido ' C: /Ruby187/LIB/RUBY/GEMS/1.8/GEMS/activesupport-3.0.6/lib/Active_Support/Dependences.rb: 239 : Inrequire '

alguna información sobre el medio ambiente: OS: Windows 7 64bit Ruby 1.8.7 GEMS: Jammit (0.6.0) Cierre-compilador (1.1.1) Yui-compresor (0.9.6)

Si quito Jammit de Gemfile, el comando RAKE -T se ejecuta sin problemas.

¡Gracias por alguna sugerencia!

¿Fue útil?

Solución

Add this to your Gemfile:

gem 'win32-open3'

and bundle

Otros consejos

The previous answer didn't work for me because it complained that my Ruby version must be less than 1.9 (on Windows 7 64-bit). However, this command worked and jammit started working after the gem was installed:

gem install win32-open3-19
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top