views:

43

answers:

1

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?

+5  A: 

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.

edebill