The gemspec uses an unbound dependency to link-header-parser, this defaults to the latest unless other requirements exist in your own gemfile.
With the 7.0.0 this causes phrase to crash due to some breaking changes, specially the LinkHeaderParser.parse method.
Being the parsing of the response the most affecting one.
Potential solutions:
- change the gemspec to limit to any <= 6.0 version
- change the gemspec to >=7.0 and fix the affected invovations.
The gemspec uses an unbound dependency to link-header-parser, this defaults to the latest unless other requirements exist in your own gemfile.
With the 7.0.0 this causes phrase to crash due to some breaking changes, specially the LinkHeaderParser.parse method.
Being the parsing of the response the most affecting one.
Potential solutions: