As explained here pry's plugin require pry- prefix. I have tried building using bundler:
bundle gem pry-name
but it messed up directory hierarchies(creating 2 instead of 1 directory):
create pry-name/pry-name.gemspec
create pry-name/lib/pry/name.rb
create pry-name/lib/pry/name/version.rb
In the gemspec it is using wrong directory structure:
require 'pry/name/version'
and in the same file it run this git command:
spec.files = `git ls-files`.split($/)
which gives, same as above, wrong structure of files
Is there way to tell bundler to recognize "-" as valid filename character not as "/"(directory separator)?