我使用RailsInstaller在Windows上安装了rails,当我尝试用命令创建一个新的应用程序时,例如。
rails new blog
它会创建很多文件,但在Using turbolinks 2.2.2
之后它会向我返回错误:
Bundler::GemspecError: Could not read gem at C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/cache/tzinfo-data-1.2014.3.gem. It may be corrupted.
我该如何解决这个问题?
答案 0 :(得分:1)
看起来你有一个损坏的gem文件(可能是由于网络下载问题)。
转到C:\RailsInstaller\Ruby1.9.3\lib\ruby\gems\1.9.1\cache\
并删除名为tzinfo-data-1.2014.3.gem
的文件。
然后再次运行rails new blog
命令,它应该可以工作。