在Windows 7 x64上的任何源中找不到linecache19-0.5.13

xet*_*h23 3 ruby rubygems ruby-on-rails

如果我跑的话,我安装了Ruby

ruby -v
Run Code Online (Sandbox Code Playgroud)

我知道了:

ruby 1.9.3p125 (2012-02-16) [i386-mingw32]
Run Code Online (Sandbox Code Playgroud)

如果我在我的应用程序目录中运行

rails server
Run Code Online (Sandbox Code Playgroud)

输出:

?[31mCould not find multi_json-1.3.2 in any of the sources?[0m
?[33mRun `bundle install` to install missing gems.?[0m
Run Code Online (Sandbox Code Playgroud)

运行

bundle install
Run Code Online (Sandbox Code Playgroud)

出现此错误:

Fetching source index for http://rubygems.org/
Could not find linecache19-0.5.13 in any of the sources
Run Code Online (Sandbox Code Playgroud)

有什么问题?

Azo*_*olo 5

它看起来linecache19-0.5.13还没有发布.

目前的版本是0.5.12根据rubygems.org.

  • 感谢你对linecache19 repo的github链接.这是我在我的Gemfile中用来通过bundler安装所需的gems:`gem'linecache19','> = 0.5.13',:git =>'https://github.com/robmathews/linecache19-0.5.13的.git'; gem'ruby-debug-base19x','> = 0.11.30.pre10'; gem'ruby-debug-ide','> = 0.4.17.beta14'` (3认同)
  • 酷,但它没有发布到rubygems.org,所以它实际上没有发布... (2认同)