Reputation: 15107
I have a 2 different rails project, and I want to share my models among them. How could I achieve this?
I am considering a gem or sub-modules.
Upvotes: 2
Views: 764
Reputation: 3963
Extract the common code to a gem, or at the very least into a library structure (maybe in /lib ...) that you can isolate and manually include into your two projects.
Upvotes: 6
Reputation: 4197
I suppose when you say share models, you imply activerecord
models. You can create symlink to folder. Or something similar has been asked at Share Models between 2 Rails API's (Separate Applications)
Upvotes: 1