From a2fc23d7e23b90298d562f5846f8d7e8b07b274d Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Tue, 2 Jul 2024 09:00:30 -0400 Subject: [PATCH 1/3] docs: fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca674210..2093deb1 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ namespace :resque do # If your schedule already has +queue+ set for each job, you don't # need to require your jobs. This can be an advantage since it's # less code that resque-scheduler needs to know about. But in a small - # project, it's usually easier to just include you job classes here. + # project, it's usually easier to just include your job classes here. # So, something like this: require 'jobs' end From 46e2c1f6aaaac4d74236749ebe8615e338797c81 Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Mon, 5 Aug 2024 15:45:48 -0400 Subject: [PATCH 2/3] docs: fix links to generated docs rdoc.info is now rubydoc.info --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2093deb1..1a24250a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Resque.enqueue_at(5.days.from_now, SomeJob, argument) # runs a job at a specific This `README` covers what most people need to know. If you're looking for details on individual methods, you might want to try the -[rdoc](http://rdoc.info/github/resque/resque-scheduler/master/frames). +[rubydoc](http://rubydoc.info/github/resque/resque-scheduler/master/frames). ### Installation From bbf6e52d29ba466e3adaedaee74ee3f19aef3ea4 Mon Sep 17 00:00:00 2001 From: "JC (Jonathan Chen)" Date: Mon, 5 Aug 2024 16:48:44 -0400 Subject: [PATCH 3/3] docs: make link https --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a24250a..319394c2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Resque.enqueue_at(5.days.from_now, SomeJob, argument) # runs a job at a specific This `README` covers what most people need to know. If you're looking for details on individual methods, you might want to try the -[rubydoc](http://rubydoc.info/github/resque/resque-scheduler/master/frames). +[rubydoc](https://rubydoc.info/github/resque/resque-scheduler/master/frames). ### Installation