当启动Guard时,我得到这样的输出:

$ guard
WARN: Unresolved specs during Gem::Specification.reset:
      lumberjack (>= 1.0.2)
      ffi (>= 0.5.0)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.

这意味着什么?我该如何解决?

Guardfile的内容:

guard 'livereload' do
    watch(%r{.+\.(css|js|html)$})
end
guard 'sass', :input => 'css', :style => :compressed, :extension => '.min.css'

当前回答

使用打包机。调用bundle exec guard,而不是guard。

其他回答

这招对我很管用:

bundle clean --force

然后

bundle install

重新安装宝石。

我在Guard插件gem中运行Rspec时得到了这条消息,使用bundle exec Rspec。原来这是gemspec文件中缺失的一行:

$:.push File.expand_path("../lib", __FILE__)

这一行通常位于文件的顶部(在我最近工作的许多gem中),我已经将其注释掉以了解原因。

add

'bundle exec'

在你的命令之前。

我使用ruby 2.4,在windows上部署jekyll时也遇到了同样的问题,它修复了。

记住,如果你想使用guard,你必须在Gemfile中添加gem guard。

group :developement, :test do
  gem 'guard'
end

然后,运行

bundle install

我希望这能帮助到你。

使用打包机。调用bundle exec guard,而不是guard。