gem install autotest-fsevent在更新到macosx mavericks后失败

时间:2013-10-23 22:24:32

标签: ruby macos gem osx-mavericks

在安装宝石autotest-fsevent

时遇到问题后更新到Mavericks

这是我得到的错误;

Mellon:public lasdolphin$ sudo gem install autotest-fsevent
Building native extensions.  This could take a while...
ERROR:  Error installing autotest-fsevent:
ERROR: Failed to build gem native extension.

/Users/lasdolphin/.rvm/rubies/ruby-1.9.3-p448/bin/ruby extconf.rb
    extconf.rb:24:in `<main>': Darwin 13 is not (yet) supported (RuntimeError)


Gem files will remain installed in /Users/lasdolphin/.rvm/rubies/ruby-1.9.3-        p448/lib/ruby/gems/1.9.1/gems/autotest-fsevent-0.2.8 for inspection.
Results logged to /Users/lasdolphin/.rvm/rubies/ruby-1.9.3-        p448/lib/ruby/gems/1.9.1/gems/autotest-fsevent-0.2.8/ext/fsevent/gem_make.out

知道为什么会这样吗?

3 个答案:

答案 0 :(得分:2)

  1. 将XCode从5.0升级到5.0.1
  2. 安装最新的Command Line Tools (OS X Mavericks) for Xcode - Late October 2013
  3. 重建你的红宝石(在我的情况下,我使用rbenv,所以我运行rbenv install 2.0.0-p247
  4. 以上步骤解决了我的问题,希望对你有所帮助!

答案 1 :(得分:2)

已在autotest-fsevent版本0.2.9中修复

由于autotest-fsevent中的以下行而失败:

SDK_VERSION = { 9 => '10.5', 10 => '10.6', 11 => '10.7', 12 => '10.8' }[DARWIN_VERSION]

请注意,小牛队没有进球(10.9)。您可以暂时在github上分叉autotest-fsevent repo并为Mavericks添加必要的条目:

13 => '10.9'

似乎至少让它建立起来。然后在gemfile中引用你的fork:

gem 'autotest-fsevent', git: 'https://github.com/your-username/autotest-fsevent'

如果您没有使用捆绑工具install the gem from the branch directly

答案 2 :(得分:1)

我尝试从XCode和网站安装“Comand line tools(OS X Maveriks)”,但没有成功。

在另一篇文章中,我找到了可行的解决方案,我找到了这个命令:

  

xcode-select --install

此命令以正确的方式下载并安装命令行工具。

之后,我可以毫无问题地安装所有新宝石。