我正在尝试在Windows上安装后卫重新加载。到目前为止,我已经安装了防护装置并通过捆绑机工作。但在安装livereload gem并尝试guard init livereload
和bundler exec guard init livereload
后,我得到以下内容:
10:12:46 - ERROR - Could not load 'guard/livereload' or '~/.guard/templates/live
reload' or find class Guard::Livereload
答案 0 :(得分:1)
当我尝试运行guard init livereload
时遇到了类似的问题,但是当您单独运行bundle exec guard init
且末尾没有livereload
字词时,它的工作效果很好。您还可以阅读有关Guard Gem的更多信息。也许这也对您有用。干杯:)
答案 1 :(得分:0)
编辑Gemfile
source 'https://rubygems.org'
group :development do
gem 'guard-livereload'
gem 'guard-bundler'
end
然后再次运行bundle install
。