rails-ai-bridge 2.2.0 → 2.2.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/lib/rails_ai_bridge/version.rb +1 -1
- data/rails-ai-bridge.gemspec +7 -7
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70867e1bc29b66979111806711304a319895660a492f22c32664945cbd9a0172
|
|
4
|
+
data.tar.gz: 157d6edc614ab44ce75bd26a67180d52f972309c6e40442aebf597885573f27b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7443118e1519437db85760ccf3ab74149c089cc5c11df0a07f3265ef32f7715f11bff08ac77e71c6630b6e84a38139f5d34e3240b8daf7a15de978e0647c2cb7
|
|
7
|
+
data.tar.gz: 496f69091bc4d8fce29527bc0445868250b3a34fb5a7192cd19d5334940c857e022a6b71a1268e0035f6c6f65a71de90f5b4deb1dd26250bfcc9e4cc98f63bdd
|
data/rails-ai-bridge.gemspec
CHANGED
|
@@ -8,13 +8,13 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = [ "Ismael Marin" ]
|
|
9
9
|
spec.email = [ "ismael.marin@gmail.com" ]
|
|
10
10
|
|
|
11
|
-
spec.summary = "
|
|
12
|
-
spec.description = <<~DESC
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
spec.summary = "Senior-grade AI context and semantic model tiering for Ruby on Rails."
|
|
12
|
+
spec.description = <<~DESC.gsub(/\s+/, " ").strip
|
|
13
|
+
Rails-AI-Bridge introspects your Rails application and exposes structure to AI assistants via
|
|
14
|
+
static context files and a live Model Context Protocol (MCP) server. It classifies Active Record
|
|
15
|
+
models semantically (Core, Join, Supporting), optionally surfaces non-ActiveRecord Ruby classes
|
|
16
|
+
under app/models (tagged POJO/Service), and integrates with editors and assistants such as
|
|
17
|
+
Claude, Gemini, Cursor, and Windsurf.
|
|
18
18
|
DESC
|
|
19
19
|
|
|
20
20
|
spec.homepage = "https://github.com/igmarin/rails-ai-bridge"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-ai-bridge
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ismael Marin
|
|
@@ -175,12 +175,11 @@ dependencies:
|
|
|
175
175
|
- - "~>"
|
|
176
176
|
- !ruby/object:Gem::Version
|
|
177
177
|
version: '0.9'
|
|
178
|
-
description:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
any MCP-compatible AI tool. Zero configuration required.
|
|
178
|
+
description: Rails-AI-Bridge introspects your Rails application and exposes structure
|
|
179
|
+
to AI assistants via static context files and a live Model Context Protocol (MCP)
|
|
180
|
+
server. It classifies Active Record models semantically (Core, Join, Supporting),
|
|
181
|
+
optionally surfaces non-ActiveRecord Ruby classes under app/models (tagged POJO/Service),
|
|
182
|
+
and integrates with editors and assistants such as Claude, Gemini, Cursor, and Windsurf.
|
|
184
183
|
email:
|
|
185
184
|
- ismael.marin@gmail.com
|
|
186
185
|
executables:
|
|
@@ -430,5 +429,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
430
429
|
requirements: []
|
|
431
430
|
rubygems_version: 3.6.9
|
|
432
431
|
specification_version: 4
|
|
433
|
-
summary:
|
|
432
|
+
summary: Senior-grade AI context and semantic model tiering for Ruby on Rails.
|
|
434
433
|
test_files: []
|