├── .gitignore ├── test ├── slow_script.rb └── rtimeout_test.rb ├── README ├── Manifest ├── bin └── rtimeout ├── Rakefile └── lib └── rtimeout.rb /.gitignore: -------------------------------------------------------------------------------- 1 | rtimeout.gemspec 2 | pkg 3 | -------------------------------------------------------------------------------- /test/slow_script.rb: -------------------------------------------------------------------------------- 1 | sleep 1.5 2 | puts "It worked!" 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | $ rtimeout