Conversation
Edited 1 year ago

Should you still commit the `Gemfile.lock` for web apps that users will run locally?

1
0
0

@postmodern yes; in a couple months all the gems will have new versions. The bare `Gemfile` will make sure it gets gem versions that work with each other, but they may not work with your code.

1
0
0

@TALlama provided the versions are constrained and everyone follows SemVer, it shouldn't be a problem if new minor or patch versions get installed?

2
0
0

@postmodern @TALlama A new tiny version of selenium-webdriver broke my CI today. So yeah, I say if it's running locally, check in the lockfile.

0
0
0