├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── lib ├── puma_doctor.rb └── puma_doctor │ ├── capistrano.rb │ ├── daemon_template.rb.erb │ ├── doctor.rb │ ├── logger.rb │ └── version.rb └── puma_doctor.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require "bundler/gem_tasks" 2 | -------------------------------------------------------------------------------- /lib/puma_doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/lib/puma_doctor.rb -------------------------------------------------------------------------------- /lib/puma_doctor/capistrano.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/lib/puma_doctor/capistrano.rb -------------------------------------------------------------------------------- /lib/puma_doctor/daemon_template.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/lib/puma_doctor/daemon_template.rb.erb -------------------------------------------------------------------------------- /lib/puma_doctor/doctor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/lib/puma_doctor/doctor.rb -------------------------------------------------------------------------------- /lib/puma_doctor/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/lib/puma_doctor/logger.rb -------------------------------------------------------------------------------- /lib/puma_doctor/version.rb: -------------------------------------------------------------------------------- 1 | module PumaDoctor 2 | VERSION = "0.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /puma_doctor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spilin/puma_doctor/HEAD/puma_doctor.gemspec --------------------------------------------------------------------------------