I am beginning to contribute to a Rails/Heroku project that, and I was cloning it to my machine running linux Mint. As I was getting it up and running locally I encountered similar issues as in this question, namely the error
/usr/bin/env: ruby.exe: No such file or directory
when trying to start my local server. This was an easy fix, just changed "ruby.exe" to just "ruby" in bin/bundle bin/rails and bin/rake but I'm worried about pushing back to github, since the project automatically hosts whatever is on the remote repo.
Am I going to cause issues with the hosted version if I push my changes to the bin files? If I am is the most appropriate solution adding the bin files to .gitignore since the changes are only necessary on my machine? Most of the other contributors are using OSX or Windows.