{"id":19186845,"url":"https://github.com/dougeverly/scheduler-commander","last_synced_at":"2026-07-16T09:34:19.181Z","repository":{"id":10413318,"uuid":"12570844","full_name":"DougEverly/scheduler-commander","owner":"DougEverly","description":" Experimental command line interface to a persistent rufus-scheduler process.","archived":false,"fork":false,"pushed_at":"2013-09-03T18:41:02.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-25T02:43:57.334Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DougEverly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-09-03T17:56:51.000Z","updated_at":"2014-02-12T02:59:08.000Z","dependencies_parsed_at":"2022-09-07T17:13:12.868Z","dependency_job_id":null,"html_url":"https://github.com/DougEverly/scheduler-commander","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DougEverly/scheduler-commander","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DougEverly%2Fscheduler-commander","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DougEverly%2Fscheduler-commander/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DougEverly%2Fscheduler-commander/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DougEverly%2Fscheduler-commander/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DougEverly","download_url":"https://codeload.github.com/DougEverly/scheduler-commander/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DougEverly%2Fscheduler-commander/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35539516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-16T02:00:06.687Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-09T11:16:55.040Z","updated_at":"2026-07-16T09:34:19.164Z","avatar_url":"https://github.com/DougEverly.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"scheduler-commander\n===================\n\n Experimental command line interface to a persistent rufus-scheduler process.\n\nSchedulables can be scheduled, removed, paused, and resumed without starting the main process.\n\nRequirements\n============\n\nruby or jruby or anything that rufus-scheduler supports.\n\nUsage\n=====\n\nStarting the server\n-------------------\n`ruby run_job_server.rb`\n\nConnecting to the control port\n------------------------------\n`telnet localhost 2000`\n\nHelp\n----\n\n```\nhelp\n\u003e Valid commands: list, add, delete, pause, resume, help, jobs\n```\n\nList schedulable jobs\n---------------------\n\n```\njobs\n\u003e +--------+---------------------+\n| Work   | Displays some text. |\n| Looper | Displays some text. |\n+--------+---------------------+\n```\n\nAdd instance of a job\n---------------------\n\n```\nadd work_job every 5s Work\n\u003e Added job work_job\n```\n\n```\nadd loop_job in 5s Looper\n\u003e Added job loop_job\n```\n\nList scheduled jobs\n-------------------\n```\nlist\n\u003e +----------+---------+----------+---------------------------+---------------------------+\n| Name     | Status  | Interval | Last Run                  | Next Run                  |\n+----------+---------+----------+---------------------------+---------------------------+\n| work_job | running | 5s       | 2013-09-03 14:15:51 -0400 | 2013-09-03 14:15:56 -0400 |\n| loop_job | running | 5s       | 2013-09-03 14:15:38 -0400 | 2013-09-03 14:15:38 -0400 |\n+----------+---------+----------+---------------------------+---------------------------+\n```\n\nAdd another instance of a job\n-----------------------------\n\n```\nadd work_job_2 every 2s\n\u003e Added job work_job_2\n```\n\n```\nlist\n\u003e +------------+---------+----------+---------------------------+---------------------------+\n| Name       | Status  | Interval | Last Run                  | Next Run                  |\n+------------+---------+----------+---------------------------+---------------------------+\n| work_job   | running | 5s       | 2013-09-03 14:20:36 -0400 | 2013-09-03 14:20:41 -0400 |\n| loop_job   | running | 5s       | 2013-09-03 14:15:38 -0400 | 2013-09-03 14:15:38 -0400 |\n| work_job_2 | running | 2s       | 2013-09-03 14:20:37 -0400 | 2013-09-03 14:20:39 -0400 |\n+------------+---------+----------+---------------------------+---------------------------+\n```\n\nDelete job\n----------\n\n```\ndelete work_job_2\n\u003e Deleted job work_job_2\n```\n\nPause jobs\n----------\n\n```\npause work_job\n\u003e Paused job work_job\n```\n\nResume jobs\n----------\n\n```\nresume work_job\n\u003e Resumed job work_job\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdougeverly%2Fscheduler-commander","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdougeverly%2Fscheduler-commander","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdougeverly%2Fscheduler-commander/lists"}