wurk 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/wurk/version.rb +1 -1
- data/vendor/assets/dashboard/wurk-manifest.json +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d535340ce300b6e688dbeed5657583ebd3c5795363b9737482a801b666bb8643
|
|
4
|
+
data.tar.gz: 805d1e4aa47fb526d3c6660c160a6c87a9de399070518a545d8d2f12a321920e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 551f19e3fc8f8008724d92d2851d4856af46b9fd7a7089f72d250439f03ff48107e5a5f327b0f279e728a8d9011bf70237a26b5f6355a7ddbc72549e745471d4
|
|
7
|
+
data.tar.gz: 72d3b2cd7123cf96219ff797217588bf366975c4eac07bfdb339c8f840d11d52bb32c1c1a024de345e895b6d2b2a8c768d815780c74d2f9c0696f1d5e133730a
|
data/README.md
CHANGED
|
@@ -280,6 +280,10 @@ What has made that hard is maintenance: someone has to be paid to do it. Sidekiq
|
|
|
280
280
|
- keep adding surface Sidekiq doesn't have — the [Wurk extras](#wurk-extras) above landed as one release;
|
|
281
281
|
- hold ourselves to published numbers instead of adjectives — the suite runs against stock Sidekiq every release and ships the results [as measured](docs/benchmarks.md), including the unflattering ones.
|
|
282
282
|
|
|
283
|
+
DHH makes the broader version of this argument in [Let the agents democratize open source](https://world.hey.com/dhh/let-the-agents-democratize-open-source-9fd630a9): open source fought for everyone's right to change the software they run, and refusing agent-written code re-erects the gate it spent decades tearing down — "all programmers are equal, but some programmers are more equal than others." His subject is contributions; ours is maintenance, which is the same economics from the other end. The reason a licence key guards batches and cron is not that the code is precious, it's that somebody had to be paid to keep it working. Drop that cost and the tier stops being necessary.
|
|
284
|
+
|
|
285
|
+
What makes it work in practice is that the agents run inside machinery built to check them. The oracles, upstream suites, and published numbers above are gates, not decoration, and the release gate has never once let an unverified gem reach RubyGems. Agents supply the pace, the gates supply the certainty — and when a gate does catch something, the fix is to make that class of mistake structurally impossible rather than to slow the agents down. The release lane derives its own tag from `Wurk::VERSION` so the two can't drift apart; [RELEASE.md](https://github.com/developerz-ai/wurk/blob/main/RELEASE.md) walks through it.
|
|
286
|
+
|
|
283
287
|
Wurk is MIT and stays that way. If what you need is a commercial support contract and a human on the other end of an email, buying that is a perfectly good answer.
|
|
284
288
|
|
|
285
289
|
## Migrating from Sidekiq
|
data/lib/wurk/version.rb
CHANGED