How to edit a gem in Heroku

I use the "rails3-jquery-autocomplete" gem, but it doesn’t have multiple column searches, but has a fork that does this (for more details see: https://github.com/crowdint/rails3-jquery-autocomplete/pull/95 )

Now I need to deploy to Heroku, but he will install the official stone. How can I edit it? Or, if this is not possible, how can I import a stone into the application?

Thank.

+5
source share
1 answer

you can use fork by specifying the path: git in your gemfile declaration

sort of

gem "_GEM_NAME_", :git => "git://git/repository.git"

, , vendor/gems/_gem_name, : path

gem "_GEM_NAME_", :path => "vendor/gems/_gem_name"
+5

All Articles