How can I unpack a gem specified in bundler by a :git => url?
My Gemfile has
gem 'my_gem', :git => 'git@github.com:xxxxx/xxxxx.git'
$ bundle
correctly reports the gem as available, and my code works. $ bundle which my_gem
even tells me where my gem is stored. However:
$ gem unpack my_gem
ERROR: Gem 'my_gem' not installed nor fetchable.
$ bundle exec gem unpack my_gem
ERROR: Gem 'my_gem' not installed nor fetchable.
Is it possible to unpack a gem installed like this?