I\'ve modified a Gem that I use in my Rails app, and need to use it on Heroku. Is there a way to upload the modified Gem to Heroku within my app and specify a custom path in
You can place custom gems in the vendor directory and then specify them in your Gemfile:
vendor
gem 'gemname', '1.0', :path => 'vendor/gemname'