Unresolved specs during Gem::Specification.reset:

后端 未结 9 1281
孤独总比滥情好
孤独总比滥情好 2020-11-29 16:47

When launching Guard, I\'m getting this output:

$ guard
WARN: Unresolved specs during Gem::Specification.reset:
             


        
9条回答
  •  离开以前
    2020-11-29 17:17

    Remember, if you want to use guard, you have to add gem guard to Gemfile.

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

    Then, run

    bundle install
    

    I hope this can help you.

提交回复
热议问题