├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md ├── config.ru ├── config.yml ├── documentation-images ├── mind-blown.gif └── yo-dawg.png └── server.rb /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rackup -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require File.expand_path('../server', __FILE__) 2 | 3 | run Sinatra::Application 4 | -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/config.yml -------------------------------------------------------------------------------- /documentation-images/mind-blown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/documentation-images/mind-blown.gif -------------------------------------------------------------------------------- /documentation-images/yo-dawg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/documentation-images/yo-dawg.png -------------------------------------------------------------------------------- /server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredatron/deploy-hook-forker/HEAD/server.rb --------------------------------------------------------------------------------