Sam Smoot
Sam Smoot
A workaround might be to support multiple field fetching in the XPATH DSL. Right now I can't figure out how to do much better than: ``` scala case class Key(id:...
For posterity, I got around it by adding `.copy(urlBuilder = QueryStringUrlFunc)` to my request after the `.postMulti(...)`. I'll leave if this open in case you think there's something nicer that...
That CloudBees error appears to be because they aren't running CouchDB on localhost.
Cool. So is master definitive? Or is that 2.9 only? I was a little fuzzy on that.
BTW, the sum total of the Listen code in Doubleshot is in these two locations: - [`Doubleshot::CLI::Commands::Test`](https://github.com/sam/doubleshot/blob/master/lib/doubleshot/commands/test.rb#L124-176) - [Dependency Configuration in `Doubleshot` File](https://github.com/sam/doubleshot/blob/master/Doubleshot#L11-12)
Eric, please give this one a shot. Let me know if you have any questions. Like I said, I'd probably start by vendoring in [Watchr](https://github.com/mynyml/watchr) and patching up the `RbConfig`...
We'll replace `Listen` with [OnChange](https://github.com/sam/onchange) when it's ready as a static dependency in our `pom.xml`. Once this is done we'll lose compatibility with Java6 since `OnChange` uses `java.nio.file.WatchService`, which was...
I don't care for `config.local_jar` personally. I think the cleanest user API would probably be to let `config.jar` accept a coordinate **or** a URI. That way you could: ``` ruby...
Here's a shorter version of the coordinate-matching regexp: ``` ruby /((^|\:)\w+[\w\.\-]*){3,}$/ ``` Must be at-least three parts, separated by colons, a part must begin with a letter or number.
It's actually fairly well factored (IMO). I think it would just be adding an `if` statement to `JarDependencyList#fetch` and using a `LocalJarDependency < JarDependency` if the regexp is matched. Since...