├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib └── puma │ └── plugin │ └── heroku.rb ├── puma-heroku.gemspec └── test ├── config.rb └── hello.ru /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /lib/puma/plugin/heroku.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/lib/puma/plugin/heroku.rb -------------------------------------------------------------------------------- /puma-heroku.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/puma-heroku.gemspec -------------------------------------------------------------------------------- /test/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puma/puma-heroku/HEAD/test/config.rb -------------------------------------------------------------------------------- /test/hello.ru: -------------------------------------------------------------------------------- 1 | run lambda { |env| [200, {"Content-Type" => "text/plain"}, ["Hello World"]] } 2 | --------------------------------------------------------------------------------