Daniel Wichman-Buescher

Results 3 comments of Daniel Wichman-Buescher

@TobiasBales I'm also looking at this. Do you understand why `bundle install` will install `rugged 0.99.0` when `poper.gemspec` contains the following line? ```ruby s.add_runtime_dependency('rugged', '~> 0.23', '>= 0.23.0') # line...

I was getting that same error in the test suite with version `0.99.0`. When I pin `rugged` to version `0.23.1`, the errors go away. ```ruby s.add_runtime_dependency('rugged', '0.23.1') # line 23...

Looks like `rugged 0.99.0` is incompatible with `lib/poper/runner.rb`. When `'any_gem', '~> 0.23'` is specified, the pessimistic operator will actually allow the final series of digits in the version string to...