1

Is it possible to create a rails engine and insert it into a 3.2.14 application? I want to put a blogging engine into an older Rails app. Will the gemfiles collide or stand on their own?

4

2 回答 2

1

Rails 引擎可用于 3.2.x 应用程序。但是 Engine gem 依赖项必须允许使用 Rails 3.2.x。如果引擎的依赖项严格要求 Rails 4,那么您将无法将引擎与 Rails 3.2 应用程序一起使用。

于 2013-11-15T02:29:22.907 回答
0

您不能同时使用两个版本的 Rails,但如果您的引擎兼容 3.2,那么您可能会走运。或者,您可以使用兼容的旧版本引擎,也许?

于 2013-11-15T05:38:07.553 回答