I have a rails application. which uses a private gem from the github.
in Gemfile:
gem 'xyz',
git: "https://#{ENV['GITHUB_TOKEN']}:x-oauth-basic@github.com/cvb/xyz.git",
branch: :development
I added some modifications to this gem locally. in order to test those modifications, i want to change those remote gem path's to the local gem path(the application and the gem are present in the same directory). but i don't know how to mention this local gem path in the gem file. can any body help me with the syntax, like what path should be added to the gemfile(like relative path or absolute path).