Should I put folder .bundle under version control
I just started using bundler with rails 2.3.8. Afte开发者_如何学编程r running bundler install there is folder .bundle at the root of my project.
Should I put .bundle under version control?
I'd leave that out of version control. In general, adding generated files is bad - especially if they might have misleading information when someone else checks out the code. That would definitely be true in this case.
精彩评论