Большов Андрей
Большов Андрей
Please describe it in readme if it is public method
I think solutions for this kind of bugs is put results in array ``` results = raw_input[1..-1].map{ |r| r[1] } # error results = raw_input[1..-1].map{ |r| [r[1]] } # no...
@balvig, please look at Faraday default handling process https://github.com/lostisland/faraday/search?utf8=%E2%9C%93&q=parse_body%3F&type= It don't run parse in middleware for such case
@balvig, yep I can. Is it ok that Result handles well(silent) when get not Hash?
I can describe two possible solutions for current situation. ``` # This is rigth silent behavior def not_respose_with_any_object mock = Minitest::Mock.new mock.expect :respond_to?, false, [:to_hash] res = Spyke:: Result.new mock...
Had same issue. Some workaround is put: //custom-repo.fr/repository/our-group:_auth = xxxx into npmrc. node-fetch-registry package don't get _auth key in some reason. It happend while pacote request manifest method.
Sorry. It took times to find exception point. ``` alias DslReplaceCondsFn = -> Bool alias DslReplaceConds = Array(DslReplaceConds) | DslReplaceCondsFn def _replace_map(cond : DslReplaceConds) : DslReplaceCondsFn if cond.is_a?(Array) cond_fns =...