Bundler error on deployment

前端 未结 3 1805
天涯浪人
天涯浪人 2021-02-01 22:50

I\'m currently using guard i.e. guard-coffeescript gem to compile my javascript (and in the future I\'ll probably add some more guard tasks) on my OSX dev system. I added the

3条回答
  •  再見小時候
    2021-02-01 23:01

    As described in

    https://github.com/guard/guard

    the solution is simply

    group :development do
      gem 'rb-inotify', :require => false
      gem 'rb-fsevent', :require => false
      gem 'rb-fchange', :require => false
    end
    

提交回复
热议问题