Without a file extension I can’t get syntax highlighting to persist. That’s not the end of the world, but I’d appreciate having it.
Will it break Rails if I rename Gemfile as Gemfile.rb ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like you can rename it, but bundler will not automatically find it.
However, you can just prepend every bundler command with
BUNDLE_GEMFILE=Gemfile.rband it’ll work:You might also look at http://gembundler.com/man/bundle-config.1.html — It mentions a gemfile option, but I couldn’t get it to work (even after manually setting it to
Gemfile.rb, it still tried to look forGemfile).