Danilo Cabello
Danilo Cabello
This gem is great, it helped me debug some callback/association hell we had created for ourselves.
For GraphQL instrumentation Wealthsimple has a good reasonable solution these days, @rperryng could chime in, give suggestions.
My issue was that CI was installing a really old version of the gem 1.0.13 - September 26, 2012 (14 KB) when I used `s.add_development_dependency 'standalone_migrations'`, the solution was to...
@jeiman You should post this question on StackOverflow, it's failing to install nokogiri (common Rails dependency not related to this project). Blurb where it fails: ``` config.status: error: in `/var/lib/gems/2.3.0/gems/nokogiri-1.10.5/ext/nokogiri/tmp/x86_64-pc-linux-gnu/ports/libxml2/2.9.10/libxml2-2.9.10':...
I am facing similuar issues as @prologic . I want to get reports from all of my repos by hitting `GET https://coveralls.io/repos.json?page=N` until I hit an empty page then hit...
I can get coverage result hitting `GET https://coveralls.io/github/org/username.json?branch=master` if I use the `repo_token` parameter, however there is no API call to fetch all repo tokens, so I hit a dead...
@prologic I ended up resorting into using Cookie based authentication in order to obtain the coverage data I needed, I extracted a single file script people can use to build...
Bump stale bot. 🤖
@nychang I am no longer using Coveralls. I was not using the API as it did not fit my use case, I was using the Cookie solution I shared in...
As a short gap measure I did the following. On integration code, Sinatra for example: ``` settings.datadog_tracer.configure enabled: ENV['DATADOG_APM_ENABLED'].present? ``` On Procfile: ``` web: env DATADOG_APM_ENABLED=true bundle exec ... ```...