vote up 0 vote down star

What is the best way to apply a simple patch to a Ruby gem in a Rails app?

Is it possible to keep the original gem code untouched?

flag

1 Answer

vote up 2 vote down check

Yes, it's possible. Just open the class, alias the method that has problems, and provide your own implementation of it. This page shows an example of this.

You can open that class from any class, provided you added the necessary includes. Physically, the original code will remain unchanged.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.