module BillyProxyPatch

A patch to `puffing-billy`'s proxy so that it doesn't try to stop eventmachine's reactor if it's not running.

See: github.com/oesmith/puffing-billy/issues/253#issuecomment-539710620

Public Instance Methods

stop() click to toggle source
Calls superclass method
# File lib/decidim/dev/test/rspec_support/puffing_billy.rb, line 36
def stop
  return unless EM.reactor_running?

  super
end