|
I'm trying to build a gem which contains vendored gems. The idea: Non-essential parts of the gem functionality are extracted into plugins (think: Roda) and each plugin is wrapped as a vendored gem. Why? It's easier to later extract plugins into separate gems if need be. (And it solves some naming issues as well.) When doing this in a Ruby project, it works as expected. However, when I move the vendored gems inside the Ruby gem project, I hit a wall. Here's an example gem which is just a vanilla gem (created with
That's not correct, at least not if "installed locally" includes those inside Is it possible to get this to work? |
Replies: 1 comment
|
You have to specify the path in the Gemfile. |
You have to specify the path in the Gemfile.