1

我是 ruby​​ on rails 的新手,我正在尝试让我的第一个项目使用 git 和 heroku。我正在关注 Michael Hartl 的教程。我最初试图

git push heroku master

但我没有 GemFile.lock,所以我一直在尝试捆绑安装和捆绑更新,但没有任何效果,因为我没有 json 本机 gem。

bundle update

这是返回此错误的命令,它不是我遗漏了我已经拥有的所有宝石的整个错误

Installing json (1.7.3) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

        "C:/Program Files/ruby-1.9.3/bin/ruby.exe" extconf.rb
creating Makefile

make
Makefile:160: warning: overriding commands for target `C:/Program'
Makefile:153: warning: ignoring old commands for target `C:/Program'
C:/Program Files/ruby-1.9.3/bin/ruby -e "puts 'EXPORTS', 'Init_parser'"  > parser-i386
mingw32.def
/bin/sh: C:/Program: No such file or directory
make: *** [parser-i386-mingw32.def] Error 127


Gem files will remain installed in C:/Program Files/ruby-1.9.3/lib/ruby/gems/1.9.1/gems/json-1.7.3 f
or inspection.
Results logged to C:/Program Files/ruby-1.9.3/lib/ruby/gems/1.9.1/gems/json-1.7.3/ext/json/ext/parser/gem_make.out
An error occured while installing json (1.7.3), and Bundler cannot continue.
Make sure that `gem install json -v '1.7.3'` succeeds before bundling.

如果有人知道如何修复我的错误以便我可以进入下一个错误,或者我如何获得一个有效的 GemFile.lock,我将不胜感激。

4

3 回答 3

4

json_pure而是安装在您的开发机器上。这是一个json不需要 C 扩展的 gem 版本(但速度有点慢)。

在 Heroku 上,您应该能够json直接使用更快的速度。

如果你想在 Windows 上构建 C 扩展,那么你可能想看这里:
'json' native gem requires installed build tools

您可以像这样创建一个特定于 Windows 的部分Gemfile

# Common gems
gem 'xyz'
...

# Platform specific gems
platforms :ruby do
  gem 'json'
end

platforms :mswin, :mingw do
  gem 'json_pure'
end 
于 2012-06-05T23:23:10.310 回答
3

Windows 没有正确转义“C:\Program Files”中的空间。我有一段时间没有使用 Windows,但快速搜索会发现一些 修复

于 2012-06-05T23:31:04.667 回答
0

我遇到了同样的问题,发现在我的 config.yaml 文件中,安装了 Ruby 1.9.2,其中有一个空格。我必须完全卸载该版本的 Ruby,并将其从环境变量中的 PATH 中删除。然后,我重新安装了 DevKit,它运行良好。

于 2012-12-20T18:57:48.613 回答