├── .gitignore ├── LICENSE ├── README.rdoc ├── Rakefile ├── TODO ├── examples ├── basic.rb ├── run_slowmo.rb └── slowmo.rb ├── lib └── pidfile.rb └── spec └── pidfile_spec.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/Rakefile -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/TODO -------------------------------------------------------------------------------- /examples/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/examples/basic.rb -------------------------------------------------------------------------------- /examples/run_slowmo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/examples/run_slowmo.rb -------------------------------------------------------------------------------- /examples/slowmo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/examples/slowmo.rb -------------------------------------------------------------------------------- /lib/pidfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/lib/pidfile.rb -------------------------------------------------------------------------------- /spec/pidfile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samullen/pidfile/HEAD/spec/pidfile_spec.rb --------------------------------------------------------------------------------