I just started using bundler with rails 2.3.8. After running bundler install there is folder .bundle at the root of my project.
Should I put .bundle under version control?
I just started using bundler with rails 2.3.8. After 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.