meerkat-agents 0.3.3 → 0.3.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -0
  3. data/lib/meerkat/version.rb +1 -1
  4. metadata +17 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d69f3b3772488de57f012e12e29e32f8209ce9c532619f8dcfb146d43add60da
4
- data.tar.gz: 8b2bbc944bc77e9f1cf501ae1ec3e7db6236fdab8d716e365b4b062579cb42af
3
+ metadata.gz: 51c1742a69bf1d250bf974f258828a7c578530a29b2dc85a481201b7933ad27c
4
+ data.tar.gz: eb5f00f6185d64ce228031f4749dacd76aa8554913ed8e643a706724778a539a
5
5
  SHA512:
6
- metadata.gz: d28e8b50dd3a34b09c86003bb82bd0310a0c9f7cf46ee9159e793dd9a745417a180e717d3b32dd02f03cedc51844796009f9398c07bdc51066192fb8d8f80f19
7
- data.tar.gz: 12f60491acc48b1aeac99c935632421308f02e1f8f050bb5a04b95bc726c78715135984b93ea1ef04ddd8fe1ea4c83ab3c559d6eca43bc80f2389982f61cfea7
6
+ metadata.gz: 956d4a8d7c51481b5acf4ae7410f32f403911f765e22465eff010d16b234a14cff8b1655b396ad1c5d3ada45bff6a748c346e197cf8d1397d25c0616d041644b
7
+ data.tar.gz: 02041b1e93bf95a5c5d5c9c6235184b8d2efcc6992e96c689337185494b8a5b10f3a6463d6e54b47ee16d7069375ddb64e11114d9db44390c2147792d92c8c8e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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.5] - 2026-07-17
9
+
10
+ ### Changed
11
+
12
+ - RubyGems homepage / Home link points to https://meerkatagents.com/
13
+
14
+ ## [0.3.4] - 2026-07-17
15
+
16
+ ### Changed
17
+
18
+ - RubyGems description uses RDoc section headings (`==`) so rubygems.org renders paragraphs, headings, and lists instead of one collapsed block
19
+
8
20
  ## [0.3.3] - 2026-07-17
9
21
 
10
22
  ### Changed
@@ -63,6 +75,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
63
75
  - Webhook HMAC-SHA256 verification helpers
64
76
  - Optional Rails railtie and webhook verification concern
65
77
 
78
+ [0.3.5]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.5
79
+ [0.3.4]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.4
66
80
  [0.3.3]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.3
67
81
  [0.3.2]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.2
68
82
  [0.3.1]: https://github.com/Tiny-Bubble-Company/meerkat-ruby/releases/tag/v0.3.1
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Meerkat
4
- VERSION = "0.3.3"
4
+ VERSION = "0.3.5"
5
5
  end
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.3
4
+ version: 0.3.5
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, Active Job, Good Job, Solid Queue, Delayed Job, and Resque
53
+ == How it differs from Sidekiq and job queues
54
54
 
55
- These libraries are excellent for running your Ruby jobs on your workers.
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
- - 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
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:
@@ -95,11 +95,11 @@ files:
95
95
  - lib/meerkat/resources/tasks.rb
96
96
  - lib/meerkat/version.rb
97
97
  - lib/meerkat/webhooks.rb
98
- homepage: https://cloud.meerkatagents.com/docs/introduction
98
+ homepage: https://meerkatagents.com/
99
99
  licenses:
100
100
  - MIT
101
101
  metadata:
102
- homepage_uri: https://cloud.meerkatagents.com/docs/introduction
102
+ homepage_uri: https://meerkatagents.com/
103
103
  documentation_uri: https://cloud.meerkatagents.com/docs/introduction
104
104
  source_code_uri: https://github.com/Tiny-Bubble-Company/meerkat-ruby
105
105
  changelog_uri: https://github.com/Tiny-Bubble-Company/meerkat-ruby/blob/main/CHANGELOG.md