Jordan Gwyn
Jordan Gwyn
was setting up [termux](https://termux.com/) with autojump and it apparently doesn't use the standard `/usr/bin/env` so that was breaking things. this got it working for me, not sure if there are...
i'm on OSX, emacs 25.1, the latest push fixed all my issues with #9, #8 and #5 , but now there are some other behaviors that don't seem to be...
``` scala class Member(id: Long, name: String, createdAt: DateTime, updatedAt: DateTime) ... object Member extends SkinnyCRUDMapper[Member] with TimestampsFeature[EntityTag] { ... val member = Member.findAll().head // Member(1L, "name", 2016-05-24T05:49:48.000-07:00, 2016-05-24T05:49:48.000-07:00) //...
I noticed that [here the headers are applied in reverse order](https://github.com/scalaj/scalaj-http/blob/master/src/main/scala/scalaj/http/Http.scala#L350). This may well have further reaching implications, but it seems to do the wrong (or at least an unexpected)...
I can make the pr if you'd like, but the language [here](https://github.com/sbt/website/blob/master/src/reference/01-General-Info/02-Community-Plugins.md#available-plugins) seems to indicate the author should do it
basically hoping for the equivalent of the following in `curl` ```sh curl --form "name=Form Man" --form "title=Dr." --form "picture=@/path/to/my/picture.png" --form "resume=@/path/to/my/resume.pdf" http://httpbin/org/post ``` maybe something like ``` POST http://httpbin.org/post Content-Type:...
I can make the pr if you'd like, but the language [here](https://github.com/sbt/website/blob/master/src/reference/01-General-Info/02-Community-Plugins.md#available-plugins) seems to indicate the author should do it
The main ask is for repeated query params, which either `flavor1` or `flavor3` would support. Nested maps like in `flavor2` would be awesome if possible! I know sinatra and rails...