Alexey Zapparov
Alexey Zapparov
ActiveModel validations usually have `:allow_nil` keyword option. Ruby method naming also follow this theme: https://bugs.ruby-lang.org/issues/17391
Hi, Would be nice if `color ` config would have supported hex color values just like `git config` does: https://git-scm.com/docs/git-config#Documentation/git-config.txt-color E.g. ``` color default "#eeeeee" "#282828" ```
I understand that nodom is sort of internal utility belt for re:dom, but I would like to use it for my testing purposes (where I can't use neither phantomjs, nor...
* Suggest setting `Content-Length` header manually in case we can't guess body size. See-Also: https://github.com/httprb/http/pull/560
When WebMock used (particulary VCR), first, not yet, recorded request fails with: ``` HTTP::StateError: body has already been consumed ```
Reported by @oz: https://github.com/httprb/http/issues/263#issuecomment-156260388 Upon following redirects, redirector should send cookies that were sent in response.
This is a discussion of API that overtakes exisitng PRs (#512 and #493) in order to plan and clarify API that needs to be implemented. First of all I propose...
1. `HTTP::Response#cookies` must return `Array` - not jar. 2. `HTTP::Client#cookies` should be either eliminated (IMO that's the best options) or become just a simple way of adding `Cookie: ` header...
1. Deprecate `[]` and `[]=` delegators on Request/Response objects 2. Remove `Headers::Mixin` Although `res["Content-Type"]` looks nice, it's also a bit confusing.
When requesting a resource with auto_inflate feature on, encoding of body most certainly will be messed up. To reproduce: ``` ruby HTTP.use(:auto_inflate).headers("Accept-Encoding" => "gzip").get(url) ``` `url` in the above is...