xray-rails 不适用于 rails 4

xray-rails not working with rails 4

xray-rails Ctrl+Shift+X 无法使用 Rails 4

Gemfile

group :development, :test do
  gem 'xray-rails'
end

development.rb

config.assets.debug = true

我捆绑了它

.
.
Using sass-rails 5.0.4
Using turbolinks 2.5.3
Using xray-rails 0.1.21
Bundle complete! 17 Gemfile dependencies, 68 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.

使用 F12 检查浏览器中的元素显示我

<!--XRAY START 37 /home/sample/app/views/shared/_list.html.haml-->
<ol>
  <li>
    <strong>
      <a href="#">Link</a>
    </strong>
  </li>
</ol>
<!--XRAY END 37-->

注意:我正在使用 xray-rails 和 rails 3.2,它工作正常

添加 xray.jsxray.css 解决了问题

application.js

//= require jquery
//= require xray

application.css

/*
 *= require bootstrap.min
 *= require xray
 */

然后按 Ctrl + Shift + X 按预期工作

通常,中间件会自动插入它们 here