Skip to content

Instantly share code, notes, and snippets.

@markauskas
Forked from terrbear/fun.rb
Created February 23, 2010 01:10
Show Gist options
  • Save markauskas/311729 to your computer and use it in GitHub Desktop.
Save markauskas/311729 to your computer and use it in GitHub Desktop.

Revisions

  1. @terrbear terrbear created this gist Feb 19, 2010.
    9 changes: 9 additions & 0 deletions fun.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    class Fun
    include ScheduledJob

    run_every 24.hours

    def perform
    puts "performing!!!"
    end
    end