xray-rails 不适用于 rails 5.1

xray-rails not working with rails 5.1

我在 Rails 5.1 应用程序上安装了 xray-rails,但按键盘快捷键没有任何反应。我已经清除缓存资产 rails tmp:clear。有什么想法吗?

Rails 5.1 删除了 jQuery 作为依赖项。将其显式添加到 Gemfile 中:

group :development do
  gem 'xray-rails'
  gem 'jquery-rails' # add it outside the group if you need it globally
end

然后在application.js中导入:

//= require jquery

您可以再次使用 Cmd + Shift + X。