Sprockets 无法在 gem 中找到样式表

Sprockets unable to locate stylesheets in a gem

Sprockets 无法找到捆绑在 gem 中的样式表和 javascript。它引发异常 couldn't find file 'fullcalendar' with type 'text/css'

我的 application.css 包含 *= require fullcalendar 而 运行 Rails.application.config.assets.paths 的结果包含 "/usr/local/rvm/gems/ruby-2.2.1/gems/fullcalendar-rails-2.3.1.0/vendor/assets/stylesheets"

据我所知,require 应该在 vendor 文件夹中查找名为 fullcalendar 的样式表,但它似乎不是。

在 Sprockets 检查这个其他文件夹之前,我需要进行任何配置吗?

在我重新启动 rails 服务器后,Sprockets 能够找到该文件。