meerkat-agents 0.3.0 → 0.3.1
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 +8 -0
- data/README.md +1 -1
- data/lib/meerkat/version.rb +1 -1
- metadata +37 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0151964121201f009fe0a38729a847a3b45e7ba6521f10a374936f563fcdef17'
|
|
4
|
+
data.tar.gz: 31d8cd573baf1ff066769e8fa30564ac421828d1da6b4ef098aaf66b0758748a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13b749556fee04012ded622626e438e701afe51e0ae1d820ccfeb9f5e9136fb337317aa0c6f2464ad03205df67cdc1731c75226725b3d3b35354194e81eb6f62
|
|
7
|
+
data.tar.gz: f5e6b21b1aaeea6610af91bdf1f6edfa9b06c8880efa82ae02060c994ad9a4adfa51e5cea9bf1c544422b330ef6a0de8c394acb1fc761162a9cb04c26ee95d71
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.1] - 2026-07-17
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- RubyGems summary/description rewritten around the problem, use cases, and how Meerkat differs from Sidekiq / Active Job / queue gems (no pricing copy)
|
|
13
|
+
- Homepage and documentation URIs point to https://cloud.meerkatagents.com/docs/introduction
|
|
14
|
+
|
|
8
15
|
## [0.3.0] - 2026-07-16
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -44,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
44
51
|
- Webhook HMAC-SHA256 verification helpers
|
|
45
52
|
- Optional Rails railtie and webhook verification concern
|
|
46
53
|
|
|
54
|
+
[0.3.1]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.1
|
|
47
55
|
[0.3.0]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.0
|
|
48
56
|
[0.2.0]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.2.0
|
|
49
57
|
[0.1.1]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.1.1
|
data/README.md
CHANGED
data/lib/meerkat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tiny Bubble Company
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -31,10 +31,36 @@ dependencies:
|
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '3'
|
|
33
33
|
description: |
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
Meerkat Agents is the official Ruby client for Meerkat Cloud Change Intelligence.
|
|
35
|
+
|
|
36
|
+
Problem it solves
|
|
37
|
+
-----------------
|
|
38
|
+
Rails apps often need to know when something on the web changes — competitor pricing,
|
|
39
|
+
plan pages, package tracking, stock, or content — without building scrapers, cron jobs,
|
|
40
|
+
HTML diffs, retries, and webhook plumbing. Meerkat runs that watch loop in the cloud and
|
|
41
|
+
POSTs structured change events to your Rails app.
|
|
42
|
+
|
|
43
|
+
How it differs from Sidekiq / Active Job / Good Job / Solid Queue / Delayed Job / Resque
|
|
44
|
+
----------------------------------------------------------------------------------------
|
|
45
|
+
Those gems are excellent for running YOUR Ruby jobs on YOUR workers (background jobs,
|
|
46
|
+
queues, cron). Meerkat is not a job queue. You describe what to watch in plain English;
|
|
47
|
+
Meerkat fetches sources, uses your LLM key (BYOK) to judge meaningful change, and delivers
|
|
48
|
+
signed JSON webhooks. No Sidekiq workers or scraping code required for the monitoring path.
|
|
49
|
+
|
|
50
|
+
Common use cases
|
|
51
|
+
----------------
|
|
52
|
+
- Website / page change monitoring
|
|
53
|
+
- Competitor price and plan monitoring
|
|
54
|
+
- Package / shipment tracking alerts
|
|
55
|
+
- Stock and availability watches
|
|
56
|
+
- Recurring web scraping with structured findings
|
|
57
|
+
- Change detection webhooks for Rails and API backends
|
|
58
|
+
|
|
59
|
+
Keywords: rails, ruby, sidekiq, activejob, background jobs, webhook, web scraping,
|
|
60
|
+
website monitoring, price monitoring, package tracking, cron, scheduler, llm, agents,
|
|
61
|
+
change detection, faraday.
|
|
62
|
+
|
|
63
|
+
Docs: https://cloud.meerkatagents.com/docs/introduction
|
|
38
64
|
email:
|
|
39
65
|
- hello@meerkatagents.com
|
|
40
66
|
executables: []
|
|
@@ -59,12 +85,12 @@ files:
|
|
|
59
85
|
- lib/meerkat/resources/tasks.rb
|
|
60
86
|
- lib/meerkat/version.rb
|
|
61
87
|
- lib/meerkat/webhooks.rb
|
|
62
|
-
homepage: https://cloud.meerkatagents.com/docs/
|
|
88
|
+
homepage: https://cloud.meerkatagents.com/docs/introduction
|
|
63
89
|
licenses:
|
|
64
90
|
- MIT
|
|
65
91
|
metadata:
|
|
66
|
-
homepage_uri: https://cloud.meerkatagents.com/docs/
|
|
67
|
-
documentation_uri: https://cloud.meerkatagents.com/docs/
|
|
92
|
+
homepage_uri: https://cloud.meerkatagents.com/docs/introduction
|
|
93
|
+
documentation_uri: https://cloud.meerkatagents.com/docs/introduction
|
|
68
94
|
source_code_uri: https://github.com/Tiny-Bubble-Company/meerkat-ruby
|
|
69
95
|
changelog_uri: https://github.com/Tiny-Bubble-Company/meerkat-ruby/blob/main/CHANGELOG.md
|
|
70
96
|
bug_tracker_uri: https://github.com/Tiny-Bubble-Company/meerkat-ruby/issues
|
|
@@ -87,6 +113,6 @@ requirements: []
|
|
|
87
113
|
rubygems_version: 3.4.1
|
|
88
114
|
signing_key:
|
|
89
115
|
specification_version: 4
|
|
90
|
-
summary: Change Intelligence
|
|
91
|
-
|
|
116
|
+
summary: Change Intelligence for Rails — website monitoring, price tracking, webhooks
|
|
117
|
+
(not Sidekiq).
|
|
92
118
|
test_files: []
|