In my gem development directory, I moved the file lib/project/module.rb to lib/project/helpers/module.rb and then did
bundle install
This gave me an invalid gemspec error
project at /path/project did not have a valid gemspec. This prevents bundler from installing bins or native extensions, but that may not affect its functionality. The validation message from Rubygems was:
["lib/project/module.rb"] are not files
Why am I getting this error?
git add . --all
removed this warning! – Platt