libgit2 / rugged

ruby bindings to libgit2
MIT License
2.25k stars 277 forks source link

Fix pushing/hiding objects into the walker #938

Closed carlosmn closed 2 years ago

carlosmn commented 2 years ago

We accept objects instead of their string oid but we were using Data_Get_Struct instead of the TypedData_Get_Struct we moved to use so this conversion from VALUE to git_object* would always fail.

Fixes #860