├── Gemfile ├── README ├── config.ru └── mailer.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boucher/stripe-webhook-mailer/HEAD/Gemfile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boucher/stripe-webhook-mailer/HEAD/README -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './mailer' 2 | run Sinatra::Application -------------------------------------------------------------------------------- /mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boucher/stripe-webhook-mailer/HEAD/mailer.rb --------------------------------------------------------------------------------