模块化 Rails 应用程序
我正在寻找一种模块化 Rails 应用程序的方法。正如我所见,没有内置的方法可以实现它。我发现了不同的插件/核心黑客,但我对它们的工作方式和成熟度感到不信任。
您有这方面的经验吗?
到目前为止,我找到了这个:
- Desert: http://github.com/pivotal/desert
- Rails 引擎: http://rails-engines.org/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rails 引擎是当前稳定的 Rails 2.X 的一部分,因此不再是真正的“黑客”。如果您想向应用程序添加相当粗粒度的应用程序功能,那么它们似乎是一个不错的选择 - 一个很好的例子可能是向另一个应用程序添加博客或 CMS 风格的功能。在此处查看引擎上的 Railscast:http://railscasts.com/episodes/149-rails-engines
如果您希望在前端进行模块化 - 更多“小部件”风格,您可能需要查看单元格:http://github.com/apotonick/cells/
Rails engines are part of the current stable rails 2.X and so aren't really "hacks" anymore. They seem like a good fit if you want to add fairly course-grained application functionality to an application - a good example might be adding a blog or CMS-style functionality to another application. Checkout the railscast on engines here: http://railscasts.com/episodes/149-rails-engines
If you're looking to modularize on the front end - more "widget" style, you might want to look at cells: http://github.com/apotonick/cells/