所以我在Rails中使用jqPlot gem,为了使用插件,我需要做一个
//=require jqplot/plugins/plugin-name
我想要使用的每个插件。鉴于jqPlot中目前有大约30个插件,因为我使用越来越多的插件,我的application.js
清单会因所有插件需要而变得臃肿。结果,我想知道是否有办法要求整个插件文件夹只有一个require
,因为它会更加清晰。
我已尝试//=require_tree ./jqplot/plugins
和//= require_tree ./jqplot/plugins/
,并将require_tree
替换为require_directory
,我得到的只是ArgumentError
require_tree/require_directory argument must be a directory
。