从资产创建 ruby​​gem

发布于 2024-11-30 09:57:25 字数 105 浏览 1 评论 0原文

我有一些 CoffeeScript 和 sass 文件。我想创建一个 ruby​​gem,这样我就可以在每个项目中轻松使用这些文件。 我该怎么做?我必须将这些文件放在 gem 文件夹中的什么位置?

I have a few coffeescript and sass files. I want to create a rubygem so I can easily use these files in every project.
How can I do this? Where I must put these files in my gem folder?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

永言不败 2024-12-07 09:57:25

您检查过资产管道吗?如果您将资源放入 lib/assets 目录中,则 Rails 会自动为您加载它们。您所需要做的就是在 application.js 或 application.cs //= require name_of_your_asset 中引入它们。检查 client_side_validations 如何具有 解决了

Have you checked the assets pipeline? If you place the assets inside your lib/assets directory then rails will make them automatically loaded for you. All you need to do is require them in the application.js or application.cs //= require name_of_your_asset. Check how client_side_validations has solved it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文