tapioco123
tapioco123

Reputation: 3525

How to embed a gem?

I wrote a ruby application.

This use a gem, but I don't want to let the user do a gem install (because of it need no setup effort). How can I embed a gem in my app?

Upvotes: 1

Views: 585

Answers (1)

mpapis
mpapis

Reputation: 53158

you should try bundler

to package your gem:

bundle package

to install from cache:

bundle install --local

Upvotes: 1

Related Questions