如何发布vendor/_____/public/* 文件?
我已经在我的 Rails 应用程序中安装了一个插件。该插件的公共目录中有我想要提供的文件。
例如,vendor/plugins/myplugin/public/javascripts/myplugin.js。我可以通过 Rails 在 /javascripts/myplugin.js 上提供此功能吗?
我通过将文件从供应商/插件/______/public/*复制到public/*来使其工作,但这似乎是一个坏主意。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为只有当你将插件放入引擎中时这才有效。引擎可以更深入地访问 Rails 初始化过程,以便添加额外的静态资源路径。
下面是我的 engine.rb 文件的一个片段,它执行此操作:
我最近编写了一个方便的起点,用于创建一个 Rails 3 引擎,该引擎内置了此功能和许多其他基本功能:
http://keithschacht.com/creating-a-rails-3-engine-plugin-gem
I think this only works if you make your plugin into an engine. Engines can access deeper into the rails initialization process so they can add an additional static asset path.
Here is a snippet of my engine.rb file that does this:
I recently wrote a handy starting point for creating a rails 3 engine that has this and lots of other basic functionality built in:
http://keithschacht.com/creating-a-rails-3-engine-plugin-gem
对于rails 2.1,至少复制曾经是“唯一的方法”(我认为它可能仍然是,尽管你可以使用 mod_rewrite apache 模块来获取它们全部......)
with rails 2.1 at least copying used to be "the only way" (I think it probably still is, though you could use mod_rewrite apache module to get them all...)