-
The README says that you can make your package an engine, but it's unclear what difference that actually makes. |
Beta Was this translation helpful? Give feedback.
Answered by
ngan
Jul 26, 2022
Replies: 1 comment 2 replies
-
Hi @iMacTia -- This feature will promote your pack into a Rails Engine. It basically creates (dynamically / automatically) a namespace for your pack and adds namespace isolation. You can do that the nifty things you normally get with an Engine... eg |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ngan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @iMacTia -- This feature will promote your pack into a Rails Engine. It basically creates (dynamically / automatically) a namespace for your pack and adds namespace isolation.
You can do that the nifty things you normally get with an Engine... eg
mount
its routes, scoped url helpers, or table name prefix.