Juliusz Gonera
Juliusz Gonera
I'm doing something similar but still, it bothers me that there is a hash -> struct -> hash conversion.
Is `j` really better?
@ernstki right but it doesn't seem to be the default in this project. Or am I missing something?
On a similar note, it seems like `"method.response.header.Content-Type": "'text/html'"` from Integration Response also has no effect. The lambda endpoint returns with content type `text/plain`. Is the `AWS` integration type fully...
_**[[email protected]](http://code.google.com/u/102015851724140065310/) commented:**_ > How about JSHint? JSLint sometimes seems too pedantic (though I know this is controversial).
_**[[email protected]](http://code.google.com/u/102015851724140065310/) commented:**_ > I have yet to see a real case when variable hoisting got someone into trouble. I tend to think that functions should be short enough so that...
_**[[email protected]](http://code.google.com/u/102015851724140065310/) commented:**_ > BTW, even pasting current https://raw.github.com/ariya/phantomjs/master/src/bootstrap.js in JSLint already returns lots of errors.
_**[[email protected]](http://code.google.com/u/102015851724140065310/) commented:**_ > I'd still prefer JSHint, it's just more flexible and I like the fact that it's community-driven. But it's obviously not up to me to decide. > >...
Has anyone been able to get this to work and could share their config?
@bf4 What I do now: ```ruby repo_dir = "/some/machine/specific/path" repo_dir_escaped = repo_dir.gsub("/", "\\/") resultset_glob = File.join(coverage_path, "**", ".resultset.json") system("sed -i 's/#{repo_dir_escaped}\\///g' #{resultset_glob}") ``` This makes the paths relative. Then when...