Closed ulyssesrex closed 3 years ago
@mmozuras I'd be interested in your thoughts when you get a chance. Thanks!
@mmozuras would you consider giving a member of our Org (Adwerx) contributor and publishing privileges?
I'm going to close this PR for now. Let me know if there's any interest in re-opening it.
The problem:
https://github.com/mmozuras/poper/issues/15
The test suite currently fails because of incompatibilities in version
0.99.0
of therugged
dependency. The dependency should be pinned to an older version to ensure compatibility.The approach:
Currently, the gemspec uses ~> to set the version of the
rugged
dependency above0.23
.This operator actually allows the final sequence of digits in the version string to increment to whatever is the most recent minor version release. In this case,
0.99.0
is the most recent version ofrugged
, so the23
gets incremented to99
duringbundle install
.Adding an additional sub-version to the version string allows only the final
0
to be incremented. In this case, the most recentrugged 0.23.X
sub-version is0.23.3
, which is compatible withpoper
and will allow the test suite to pass.