从资产创建 rubygem
我有一些 CoffeeScript 和 sass 文件。我想创建一个 rubygem,这样我就可以在每个项目中轻松使用这些文件。 我该怎么做?我必须将这些文件放在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您检查过资产管道吗?如果您将资源放入 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