mcpeye 0.1.0 → 0.1.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 +15 -0
- data/lib/mcpeye/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1e03d773ff0e269c253e95b6c9ab2bc1397a128ff04dd10fe1946ca2abf225d
|
|
4
|
+
data.tar.gz: '08536ff4f7bf9b3dd60191719a9b7e1197e1d4340e96816a2aa1a80283805ced'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44cecb923f26ef7dd4356731807879b19369c7e38cadc95ac21625645f20d8745bfd625e804402ba0a8771ba8eeba223aabd497e15fe193b36ef2ba6938ce55c
|
|
7
|
+
data.tar.gz: 95b4cbd7133bbf670c015aa04a6cc38eb000c34a96f527d19a48dffcd4e447992034f2179cda63bbe7194d96d799decfca1c5dad1826485a3b3c3fd3d707777e
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the `mcpeye` gem are documented here.
|
|
4
|
+
This project adheres to [Semantic Versioning](https://semver.org).
|
|
5
|
+
|
|
6
|
+
## 0.1.1
|
|
7
|
+
|
|
8
|
+
- Docs: add this changelog. No functional or API changes.
|
|
9
|
+
|
|
10
|
+
## 0.1.0
|
|
11
|
+
|
|
12
|
+
- Initial release: `Mcpeye.track(server, project_id, ingest_url:)` — MCP server
|
|
13
|
+
instrumentation that injects the `mcpeyeIntent` parameter, captures tool
|
|
14
|
+
calls, and ships them to a self-hosted mcpeye instance. Pure Ruby stdlib at
|
|
15
|
+
runtime, no gem dependencies.
|
data/lib/mcpeye/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mcpeye
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mcpeye
|
|
@@ -19,6 +19,7 @@ executables: []
|
|
|
19
19
|
extensions: []
|
|
20
20
|
extra_rdoc_files: []
|
|
21
21
|
files:
|
|
22
|
+
- CHANGELOG.md
|
|
22
23
|
- README.md
|
|
23
24
|
- lib/mcpeye.rb
|
|
24
25
|
- lib/mcpeye/intent.rb
|
|
@@ -48,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
48
49
|
- !ruby/object:Gem::Version
|
|
49
50
|
version: '0'
|
|
50
51
|
requirements: []
|
|
51
|
-
rubygems_version: 3.4.
|
|
52
|
+
rubygems_version: 3.4.19
|
|
52
53
|
signing_key:
|
|
53
54
|
specification_version: 4
|
|
54
55
|
summary: Product analytics for Ruby/Rails MCP servers.
|