Kamilski81
Kamilski81

Reputation: 15107

how do i share common models among many projects in ruby/rails?

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

Answers (2)

Pavling
Pavling

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

ch4nd4n
ch4nd4n

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

Related Questions