This is pretty easy today with the Bundler. You create a local copy of the gem, and then instead
gem "whatever"
in your gemfile, you:
gem "whatever", :path => "/home/pupeno/whatever"
After starting the installation of the package, pearls are selected from this catalog. Even if you change something, all you need to do to reload is restart Rails.
If you need to deploy the application using your own Gem changes, you make a fork, on Github or similar, in the Gemfile you make:
gem "whatever", :git => "git@github.com:/pupeno/whatever.git"
and what is he. It is simple, direct and beautiful.
Pablo Oct 01 2018-10-10 at 09:46
source share