Ryan Schlesinger

Results 81 comments of Ryan Schlesinger

@misner This is exactly how we use omniauth. In fact, we don't use it to log in users at all!

I've just published a fork of andand named `ryansch-andand` which has no changes other than to add a Rakefile, Gemfile, and push to rubygems. It's meant as a workaround until...

The test suite needs to run with ES 8 on this branch but I'm not familiar enough with it to make the right change.

@jeffkreeftmeijer Could we make it configurable? I'm accepting arbitrary data from various gems and if any of them change that data in an incompatible way in a future update and...

The problem is that the formatter didn't raise an exception. It unexpectedly returned an array instead of a string. That caused an exception to be raised inside of `finish_event` (https://github.com/appsignal/appsignal-ruby/blob/master/lib/appsignal/hooks/active_support_notifications.rb#L40)...

Excon requires a little hackery to get their AS::Notification names correct (https://github.com/excon/excon#instrumentation). ```ruby class ExconInstrumentor # Excon names its notifications backwards from the rest of the # ActiveSupport::Notifications ecosystem. They...

It's my understanding that you have to call `set_backtrace` on the error in the first example before you hand it off to `set_exception` as well.

I understand that each distro is going to be particular. I'd be happy with a way to specify my own provisioner.

Here's the script I'm using to start VMs: ``` sh #!/bin/bash MACHINE_NAME=$1 MEMORY=$2 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" if [ -z "$MACHINE_NAME" ]; then echo 'machine...