Missing Gemfile.lock #165
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the Gemfile.lock is not under version control (it is on .gitignore) and without it I can't get the exact versions of the gems for development. I want to provide some bug fixes but without the Gemfile.lock I'm blocked.
Can you please add it to the repo?
Thanks
For gems it's recommended not to include the Gemfile.lock in source control as all the dependencies should be defined in the gemspec. See http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/ for details.
Having said that, you can argue that the development dependencies should be in the gemspec as well.....
Exactly, my bad!