所以我在 Rails 中使用jqPlot gem,为了使用插件,我需要做一个
//=require jqplot/plugins/plugin-name
对于我想使用的每个插件。鉴于 jqPlot 中目前有大约 30 个插件,随着我使用越来越多的插件,我的application.js
清单会因为所有插件需要而变得臃肿。结果,我想知道是否有一种方法可以使用单个 . 来要求整个插件文件夹require
,因为这样会更干净。
我已经尝试过//=require_tree ./jqplot/plugins
and //= require_tree ./jqplot/plugins/
,并且替换require_tree
为require_directory
and 我得到的只是一个ArgumentError
that require_tree/require_directory argument must be a directory
。