gpt4 book ai didi

ruby-on-rails - Guard 不会加载 WDM

转载 作者:数据小太阳 更新时间:2023-10-29 06:56:45 24 4
gpt4 key购买 nike

我正在学习 Michael Hartl 的 Rails 教程,该教程到目前为止非常出色。我在高级设置章节中,他以有利于 TDD 的方式配置 Rails 环境。我安装了 Guard,它通过运行我在 spec/文件夹中的测试一直正常运行。但是随后,它吐出了这个错误:

C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/listen-1.0.2/lib/listen/adapter.rb:195:in `require': cannot load such file -- wdm (LoadError)

我已经安装了 wdm。我不知道为什么它无法加载它。

似乎 Listen 在加载 WDM 时遇到问题。在显示“Guard is now watching...”后它退出了

出于显而易见的原因,我没有重现堆栈跟踪的其余部分。我使用最新的 Rails Installer 安装了 Rails。这里发生了什么?我需要为此担心吗?它似乎至少部分起作用......

最佳答案

事情是这样的。默认情况下,在 Windows 上,Listen 应该使用轮询来检查文件系统更改。出于某种原因,它试图使用 WDM。所以,我必须将此添加到我的 Gemfile 中:

require 'rbconfig'
gem 'wdm', '>= 0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i

也许 Guard 让 Listen 尝试使用 WDM?

关于ruby-on-rails - Guard 不会加载 WDM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16232960/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com