mcp_stdio_ruby 1.0.1 → 1.0.2
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/mcp_stdio_ruby.gemspec +35 -0
- 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: 586fcee31622cd859d09b965ab950284ea68c7ca53750c828b7de0f8de032e8d
|
|
4
|
+
data.tar.gz: 0cc490055be28ad3c994077a77ec477a405df3d0ec3664c37b20995687009430
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fcf98bfb6acdb7c27c94745d0c5ea22d5fb6d9ceb3ca72dabec037e09dffa27a1a6f4402f212ded5eabf051a0b3e301a228e457755110a9cbf4a87823b40a38d
|
|
7
|
+
data.tar.gz: 36195baad3fab8a7ab50235f8432aa8a8a4c72b466b7e6d6560d05fa5a71a1f03989e1294975077c94315cd02601274c5a86298d46ae9ca8ec8b1337a2bd5693
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |spec|
|
|
4
|
+
spec.name = 'mcp_stdio_ruby'
|
|
5
|
+
spec.version = '1.0.2'
|
|
6
|
+
spec.authors = ['xbill']
|
|
7
|
+
spec.email = ['xbill@glitnir.com']
|
|
8
|
+
|
|
9
|
+
spec.summary = 'A Ruby based Model Context Protocol (MCP) server.'
|
|
10
|
+
spec.description = 'A Ruby implementation of a Model Context Protocol (MCP) server using stdio transport.'
|
|
11
|
+
spec.homepage = 'https://github.com/xbill9/gemini-cli-codeassist'
|
|
12
|
+
spec.license = 'MIT'
|
|
13
|
+
spec.required_ruby_version = '>= 3.0.0'
|
|
14
|
+
|
|
15
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
|
16
|
+
spec.metadata['source_code_uri'] = "https://github.com/xbill9/gemini-cli-codeassist/mcp_stdio_ruby"
|
|
17
|
+
spec.metadata['changelog_uri'] = "https://github.com/xbill9/gemini-cli-codeassist/mcp_stdio_ruby/blob/main/CHANGELOG.md"
|
|
18
|
+
|
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
21
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
|
23
|
+
end
|
|
24
|
+
spec.bindir = 'exe'
|
|
25
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
26
|
+
spec.require_paths = ['lib']
|
|
27
|
+
|
|
28
|
+
spec.add_dependency 'mcp', '~> 0.1'
|
|
29
|
+
spec.add_dependency 'logger', '~> 1.6'
|
|
30
|
+
|
|
31
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
|
32
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
33
|
+
spec.add_development_dependency 'rubocop', '~> 1.0'
|
|
34
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 3.0'
|
|
35
|
+
end
|
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mcp_stdio_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- xbill
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
@@ -116,6 +116,7 @@ files:
|
|
|
116
116
|
- lib/mcp_stdio_ruby/greet_tool.rb
|
|
117
117
|
- lib/mcp_stdio_ruby/server.rb
|
|
118
118
|
- main.rb
|
|
119
|
+
- mcp_stdio_ruby.gemspec
|
|
119
120
|
homepage: https://github.com/xbill9/gemini-cli-codeassist
|
|
120
121
|
licenses:
|
|
121
122
|
- MIT
|