I'm building a rails engine and I need to pack a gem inside it because it is not available publicly. What is the best way to do that?
I'm building a rails engine and I need to pack a gem inside it because it is not available publicly. What is the best way to do that?
You would need to vendor the gem, at a point when you do have access to the gem that is not publicly available. This will make the source code, but not the location of, the not publicly available gem available. Here is a guide describing how to vendor a single rails gem, with or without bundler.