├── .gitignore ├── MIT-LICENSE ├── README.md ├── Rakefile ├── VERSION ├── init.rb ├── lib ├── passenger_monit.rb └── passenger_monit │ └── pidfile_manager.rb ├── passenger_monit.gemspec └── test ├── passenger_monit_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.1 -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | require 'passenger_monit' 2 | -------------------------------------------------------------------------------- /lib/passenger_monit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/lib/passenger_monit.rb -------------------------------------------------------------------------------- /lib/passenger_monit/pidfile_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/lib/passenger_monit/pidfile_manager.rb -------------------------------------------------------------------------------- /passenger_monit.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/passenger_monit.gemspec -------------------------------------------------------------------------------- /test/passenger_monit_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/test/passenger_monit_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanbsd/passenger_monit/HEAD/test/test_helper.rb --------------------------------------------------------------------------------