Postmodern

Results 636 comments of Postmodern

@fallwith This sounds like a flaw in CRuby's `Makefile` or `configure` script logic. If `make clean` is going to remove the file, then either the `Makefile` should have a task...

> @postmodern here is the [response](https://bugs.ruby-lang.org/issues/20495#note-1) I received: > > > For now, make clean is for those who "git clone" the repository. Don't use it for tarball package. >...

This is like several separate issues in one. - Re ordering, Ruby >= 1.9 preserves the insertion order of key/values in Hashes. If you need a certain order, simply set...

When I said I wouldn't support Rails-style query params, I meant I wasn't going to automatically add/remove the `[]` identifier or support deeply nested params (ex: Arrays of Arrays). Repeated...

@mvastola that's basically what I was thinking. Preserving the original ordering of repeated params would have to be a separate feature.

but does preserving the exact ordering really matter? Or would preserving the precedence be enough (`{ 'a' => [ '1', '3' ], 'b' => [ '2', '0' ]}` -> `a=1&a=3&b=2&b=0`).