0

我正在尝试 Lotusrb 框架,但我遇到了资产问题。我按照github 中 lotus-assets 中的说明在 lotus 中使用,但出现错误Errno::ENOENT: No such file or directory @ realpath_rec

当我这样做时会发生错误:

Lotus::Assets.configure do
  compile true

  define :stylesheet do
    sources << [
      'app/web/assets/stylesheets' # this is the path to my stylesheets
   ]
  end
end

然后在我的模板中:

<%= stylesheet 'application' %>

不知道我做错了什么。有什么帮助吗?

4

1 回答 1

3

如果您lotus new从那时起生成了您的应用程序,我认为您有错字。Lotus 生成一个apps目录。尝试这个:

Lotus::Assets.configure do
  compile true

  define :stylesheet do
    sources << [
      'apps/web/assets/stylesheets' # you had 'app/web/assets/stylesheets'
   ]
  end
end
于 2015-09-09T14:35:20.567 回答