我想知道如何从 Rakefile 访问 Nanoc 的变量(例如@items
,@config
等)。
我有一个名为的文件nanoc.yaml
,其中包含如下数据:
products:
ce:
name: 'Community Edition'
ee:
name: 'Enterprise Edition'
我希望能够在 Rakefile 中访问它,因此我有一个“单一事实来源”,可以从 Nanoc 站点以及拉取一些文档的 Rakefile 中访问。例如,在 Nanoc 站点中,您可以使用 访问这些文件@config[:products]
,但不能在 Rakefile 中访问这些文件。
我需要include
Rakefile 中 Nanoc 的东西吗?