meerkat-agents 0.3.3 → 0.3.4
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/CHANGELOG.md +7 -0
- data/lib/meerkat/version.rb +1 -1
- metadata +15 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f9cd7b7a43521def709a4b933cb35624880094c4bdeb2286da218d1e85ff7fc
|
|
4
|
+
data.tar.gz: 85046b0df47ccb0722ab4c2c349ecc9703d9795d06b05bf80b908f2392d0cb15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cfaa1976b61ff53f87f5c5d0a5eb8c3294db21aa4cfecc7d3b7b91260db05c125189ffac2458eae9b3debb679cf76f903f26138201ac45e1eea0239b960b35e6
|
|
7
|
+
data.tar.gz: 81bfa814d2d295cba877cf2420f8c9e78d23807c3238f26c5a2f3d819eeb4010a80d4e141084b0363925b1597c38a96f66f1931337ce61a135df6eecafffd547
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.4] - 2026-07-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- RubyGems description uses RDoc section headings (`==`) so rubygems.org renders paragraphs, headings, and lists instead of one collapsed block
|
|
13
|
+
|
|
8
14
|
## [0.3.3] - 2026-07-17
|
|
9
15
|
|
|
10
16
|
### Changed
|
|
@@ -63,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
63
69
|
- Webhook HMAC-SHA256 verification helpers
|
|
64
70
|
- Optional Rails railtie and webhook verification concern
|
|
65
71
|
|
|
72
|
+
[0.3.4]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.4
|
|
66
73
|
[0.3.3]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.3
|
|
67
74
|
[0.3.2]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.2
|
|
68
75
|
[0.3.1]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.1
|
data/lib/meerkat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: meerkat-agents
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tiny Bubble Company
|
|
@@ -31,7 +31,7 @@ dependencies:
|
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '3'
|
|
33
33
|
description: |
|
|
34
|
-
Meerkat Agents
|
|
34
|
+
== Meerkat Agents
|
|
35
35
|
|
|
36
36
|
The official Ruby client for Meerkat Cloud Change Intelligence.
|
|
37
37
|
|
|
@@ -41,7 +41,7 @@ description: |
|
|
|
41
41
|
|
|
42
42
|
Meerkat runs the monitoring loop in the cloud and sends structured change events back to your Rails application.
|
|
43
43
|
|
|
44
|
-
How it works
|
|
44
|
+
== How it works
|
|
45
45
|
|
|
46
46
|
1. Create a monitoring task from Ruby.
|
|
47
47
|
2. Describe what to monitor in plain English.
|
|
@@ -50,25 +50,25 @@ description: |
|
|
|
50
50
|
5. Meerkat checks the source repeatedly, compares the latest result with previous state, and identifies meaningful changes using your own LLM key.
|
|
51
51
|
6. When something changes, Meerkat POSTs a signed JSON event to your webhook, with automatic delivery retries.
|
|
52
52
|
|
|
53
|
-
How it differs from Sidekiq
|
|
53
|
+
== How it differs from Sidekiq and job queues
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
Sidekiq, Active Job, Good Job, Solid Queue, Delayed Job, and Resque are excellent for running your Ruby jobs on your workers.
|
|
56
56
|
|
|
57
57
|
Meerkat is not a background-job queue. It is managed infrastructure for continuously monitoring connected systems and reporting meaningful changes.
|
|
58
58
|
|
|
59
59
|
Instead of building polling jobs, comparison logic, schedulers, scraping code, LLM workflows, and webhook delivery pipelines, you describe what should be monitored and let Meerkat operate the watch loop.
|
|
60
60
|
|
|
61
|
-
Common use cases
|
|
61
|
+
== Common use cases
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
63
|
+
* Website and page-change monitoring
|
|
64
|
+
* API response monitoring
|
|
65
|
+
* Database and application-data monitoring
|
|
66
|
+
* SaaS and third-party system monitoring
|
|
67
|
+
* Competitor pricing and plan tracking
|
|
68
|
+
* Package and shipment tracking
|
|
69
|
+
* Stock and inventory availability alerts
|
|
70
|
+
* Recurring data checks with structured findings
|
|
71
|
+
* Change-detection webhooks for Rails and API backends
|
|
72
72
|
|
|
73
73
|
Documentation: https://cloud.meerkatagents.com/docs/introduction
|
|
74
74
|
email:
|