wurk 0.0.3 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9eb828fa09a80cfa5ba573b95dc6b3015df4c08989d018621d3ab8d9d5a9c1ae
4
- data.tar.gz: 630d08d0eb466634f1c1ea61186a6b8fa9eb8214208dce1f7f800e32cd85ce57
3
+ metadata.gz: e4c0b4f7856306b0cec991a88fa89a2ba86f152598adb27b8b1e34607128c12a
4
+ data.tar.gz: 4ece7a94d1ddba50dbcb6af3b6e17c6346c7ef90642d5839d1b87cf4a12eb7e7
5
5
  SHA512:
6
- metadata.gz: e96e4a92514254deb6ae2c94deb0e60187ceb13d5289f32a7932e51dd5c03c5df2ee1670ba5738d106f2269d5743c72978bdd5d81184804b4802903d67e703c9
7
- data.tar.gz: 7f13a1fd9c2e908c359913aa2e181341ea53dbccbf3b81a3154fd1b5286764bf1b1e841cfc5f5dc9a7cefc7432520d535ad22c69b502f25fac43a78830610e72
6
+ metadata.gz: ae6268ba18a442b30c692a3017cb6bd5a8b14fa136d5f6ae9edcf3cf5d96df1ac36bc1f5449a78f8d5f237ef70d69720c7b6b3c7a0d8730bdf8ce9ac979c9d0c
7
+ data.tar.gz: 2269d08c147405889c154e7ed995c346b972c19f0fcb40b42263bf498469b1bc33e297ab1e28f569d7162e3d6b208c3804134d74fbcc4c127e41ebe335b5ef14
data/README.md CHANGED
@@ -1,6 +1,14 @@
1
- # Wurk ⚡
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/developerz-ai/wurk/main/docs/assets/wurk-logo.png" alt="Wurk — an orc ready to work" width="220">
3
+ </p>
2
4
 
3
- **A 100% drop-in replacement for Sidekiq + Sidekiq Pro + Sidekiq Enterprise. Free forever. Faster.**
5
+ <h1 align="center">Wurk ⚡</h1>
6
+
7
+ <p align="center"><strong>Wurk, wurk.</strong> 🪓 <em>Ready to work. Zug zug.</em></p>
8
+
9
+ <p align="center"><strong>A 100% drop-in replacement for Sidekiq + Sidekiq Pro + Sidekiq Enterprise. Free forever. Faster.</strong></p>
10
+
11
+ <div align="center">
4
12
 
5
13
  [![Gem Version](https://img.shields.io/gem/v/wurk.svg)](https://rubygems.org/gems/wurk)
6
14
  [![CI](https://github.com/developerz-ai/wurk/actions/workflows/test.yml/badge.svg)](https://github.com/developerz-ai/wurk/actions/workflows/test.yml)
@@ -8,6 +16,8 @@
8
16
  [![Ruby](https://img.shields.io/badge/ruby-%E2%89%A5%203.2-CC342D.svg)](https://www.ruby-lang.org)
9
17
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
10
18
 
19
+ </div>
20
+
11
21
  Wurk is wire-compatible with Sidekiq — same Redis keys, same job JSON, same Ruby DSL. Swap one line in your `Gemfile` and your existing jobs, batches, limiters, cron entries, and live Redis data keep working untouched. The Pro and Enterprise feature sets ship in the same free gem, with no license check and no tiers.
12
22
 
13
23
  ## Install
@@ -48,6 +58,7 @@ Plus Wurk extras: a worker topology DSL, a Kubernetes liveness/readiness listene
48
58
  - **[Migrating from Sidekiq](#migrating-from-sidekiq)** — the one-line swap and what to expect.
49
59
  - **API reference (parity specs):** [Sidekiq OSS](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-free.md) · [Pro](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-pro.md) · [Enterprise](https://github.com/developerz-ai/wurk/blob/main/docs/target/sidekiq-ent.md) — the authoritative surface Wurk matches exactly.
50
60
  - **[Securing the dashboard](https://github.com/developerz-ai/wurk/blob/main/docs/dashboard.md)** · **[Metrics history](https://github.com/developerz-ai/wurk/blob/main/docs/metrics-history.md)**
61
+ - **[Compatibility & legal basis](https://github.com/developerz-ai/wurk/blob/main/docs/clean-room.md)** — clean-room implementation: Wurk copies the API, not the code (Google v. Oracle).
51
62
  - **Live demo:** [wurk.demo.developerz.ai](https://wurk.demo.developerz.ai)
52
63
 
53
64
  ## Requirements
@@ -135,3 +146,10 @@ Issues and pull requests are welcome — see **[CONTRIBUTING.md](https://github.
135
146
  ## License
136
147
 
137
148
  MIT. See [LICENSE](https://github.com/developerz-ai/wurk/blob/main/LICENSE).
149
+
150
+ Wurk is a clean-room reimplementation of the Sidekiq **API** — it copies the
151
+ interface (so your jobs run unchanged), not Sidekiq's implementation code. This
152
+ is the same basis the Supreme Court upheld for Google's reuse of the Java API in
153
+ *Google v. Oracle* (2021). "Sidekiq" is a trademark of Contributed Systems, LLC;
154
+ Wurk is independent and not affiliated with or endorsed by them. Full reasoning:
155
+ **[docs/clean-room.md](https://github.com/developerz-ai/wurk/blob/main/docs/clean-room.md)**.
data/lib/wurk/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Wurk
4
- VERSION = "0.0.3"
4
+ VERSION = "0.0.5"
5
5
  end