Skip to content

Commit b3cb4ed

Browse files
committed
Move Inspiration and License back to the end of the README
I inadvertently put the Recurring Tasks section at the end, after these. Thanks a lot to @brunoprietog for spotting this!
1 parent 732a4ef commit b3cb4ed

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -261,13 +261,6 @@ If you prefer not to rely on this, or avoid relying on it unintentionally, you s
261261
config.solid_queue.connects_to = { database: { writing: :primary, reading: :replica } }
262262
```
263263

264-
## Inspiration
265-
266-
Solid Queue has been inspired by [resque](https://github.com/resque/resque) and [GoodJob](https://github.com/bensheldon/good_job). We recommend checking out these projects as they're great examples from which we've learnt a lot.
267-
268-
## License
269-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
270-
271264
## Recurring tasks
272265
Solid Queue supports defining recurring tasks that run at specific times in the future, on a regular basis like cron jobs. These are managed by dispatcher processes and as such, they can be defined in the dispatcher's configuration like this:
273266
```yml
@@ -312,3 +305,10 @@ You can still configure this in Solid Queue:
312305
schedule: "*/5 * * * *"
313306
```
314307
and the job will be enqueued via `perform_later` so it'll run in Resque. However, in this case we won't track any `solid_queue_recurring_execution` record for it and there won't be any guarantees that the job is enqueued only once each time.
308+
309+
## Inspiration
310+
311+
Solid Queue has been inspired by [resque](https://github.com/resque/resque) and [GoodJob](https://github.com/bensheldon/good_job). We recommend checking out these projects as they're great examples from which we've learnt a lot.
312+
313+
## License
314+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).

0 commit comments

Comments
 (0)