coatepec 0.4.0

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.
metadata ADDED
@@ -0,0 +1,116 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: coatepec
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Enrique Mogollan
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 2026-08-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: mcp
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '1.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: railties
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '7.1'
33
+ - - "<"
34
+ - !ruby/object:Gem::Version
35
+ version: '8.2'
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '7.1'
43
+ - - "<"
44
+ - !ruby/object:Gem::Version
45
+ version: '8.2'
46
+ description: Coatepec is a local stdio MCP sidecar that keeps an isolated Rails test
47
+ worker warm so coding agents can run targeted RSpec examples quickly, without exposing
48
+ a general Rails console.
49
+ email:
50
+ - emogollan@gmail.com
51
+ executables:
52
+ - coatepec
53
+ - coatepec-worker
54
+ extensions: []
55
+ extra_rdoc_files: []
56
+ files:
57
+ - ".rspec"
58
+ - ".rubocop.yml"
59
+ - CHANGELOG.md
60
+ - LICENSE.txt
61
+ - README.md
62
+ - Rakefile
63
+ - exe/coatepec
64
+ - exe/coatepec-worker
65
+ - lib/coatepec.rb
66
+ - lib/coatepec/cli.rb
67
+ - lib/coatepec/errors.rb
68
+ - lib/coatepec/introspection/model.rb
69
+ - lib/coatepec/introspection/routes.rb
70
+ - lib/coatepec/introspection/safe_options.rb
71
+ - lib/coatepec/mcp.rb
72
+ - lib/coatepec/mcp/response.rb
73
+ - lib/coatepec/mcp/tools.rb
74
+ - lib/coatepec/project.rb
75
+ - lib/coatepec/project_config.rb
76
+ - lib/coatepec/protocol.rb
77
+ - lib/coatepec/spec/fork_strategy.rb
78
+ - lib/coatepec/spec/guarded_fork_strategy.rb
79
+ - lib/coatepec/spec/path_policy.rb
80
+ - lib/coatepec/spec/process_strategy.rb
81
+ - lib/coatepec/spec/result.rb
82
+ - lib/coatepec/spec/runner.rb
83
+ - lib/coatepec/spec/spawn_strategy.rb
84
+ - lib/coatepec/version.rb
85
+ - lib/coatepec/worker/change_detector.rb
86
+ - lib/coatepec/worker/client.rb
87
+ - lib/coatepec/worker/rails_runtime.rb
88
+ - lib/coatepec/worker/server.rb
89
+ - lib/coatepec/worker_manager.rb
90
+ - sig/coatepec.rbs
91
+ homepage: https://github.com/mogox/coatepec
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ allowed_push_host: https://rubygems.org
96
+ homepage_uri: https://github.com/mogox/coatepec
97
+ source_code_uri: https://github.com/mogox/coatepec
98
+ changelog_uri: https://github.com/mogox/coatepec/blob/main/CHANGELOG.md
99
+ rdoc_options: []
100
+ require_paths:
101
+ - lib
102
+ required_ruby_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '3.2'
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ requirements: []
113
+ rubygems_version: 3.6.6
114
+ specification_version: 4
115
+ summary: Run targeted RSpec examples against a warm Rails test worker over MCP
116
+ test_files: []