Project

rat

0.0
No commit activity in last 3 years
No release in over 3 years
Ruby interface to Unix "at" command. (Not compatible with Windows' "at".)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

rat¶ ↑

Ruby interface to Unix “at” command.

Installation¶ ↑

$ gem sources -a http://gemcutter.org
$ sudo gem install rat

Usage¶ ↑

$ require 'rat'
$ job = Rat.add('touch at-at', Time.now + 30)
$ # => <integer id>
$ # Thirty seconds later, the touch command runs.
$ Rat.list
$ # => [{:job => <integer id>, :time => Thu Oct 08 09:08:51 -0700 2009}, ...]
$ Rat.delete(job) # if you change your mind about running the command.

Notes¶ ↑

“At” stores your environment, including your working directory, so you don’t need full pathnames to executables, etc. like you do in cron (though it doesn’t hurt).

MacOS X¶ ↑

Note that, by default, “at” is disabled on MacOS X. See “man atrun” for the command to enable it.

Copyright © 2009 Ryan Koopmans. See LICENSE for details.