Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rails 5.1 アプリにxray-railsをインストールしましたが、キーボード ショートカットを押しても何も起こりません。キャッシュされたアセットを既にクリアしましrails tmp:clearた。何か案は?
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 をもう一度実行できます。