rails-mcp-server 1.2.2 → 1.2.3
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 +12 -2
- data/lib/rails-mcp-server/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af7744bf7f485c355100752bad04515b6ecedd4be6359e39e2d7283314b58e34
|
|
4
|
+
data.tar.gz: 50ee65aeb39135e3249c09a57721254baee2aeaccb0fb2e64c2bab0df3fa3c74
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58588767f53a8dc98bfb21f529981dd3dfacd52ca5193260bf615aa9c8f56dddf93a37dc11b3d2d811cb57e47a47e222e5b21b75d39c181caab9dd0a858b2751
|
|
7
|
+
data.tar.gz: 38183a580e4d364221e06d298356f512ab62769d333418ca479b3746ae547ed842412d595377897effa9b9283d1a2f77a9fa7b73b1dac99576125976d9426ad3
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.3] - 2025-12-10
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Setup Script Compatibility**: Fixed `rails-mcp-setup-claude` failing on readonly filesystems (thanks to @emptyflask)
|
|
13
|
+
- Only runs `chmod` when the file is not already executable
|
|
14
|
+
- Resolves issues on NixOS and similar platforms with readonly filesystems
|
|
15
|
+
- Fixes failures when the current user is not the owner of the executable
|
|
16
|
+
|
|
8
17
|
## [1.2.2] - 2025-07-21
|
|
9
18
|
|
|
10
19
|
### Added
|
|
@@ -192,6 +201,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
192
201
|
|
|
193
202
|
## Version History Summary
|
|
194
203
|
|
|
204
|
+
- **v1.2.3** (2025-12-10): Setup script fix for readonly filesystems (NixOS compatibility)
|
|
195
205
|
- **v1.2.2** (2025-07-21): Network access support with --bind-all flag
|
|
196
206
|
- **v1.2.1** (2025-06-09): Bug fixes for STDIO output and tool naming
|
|
197
207
|
- **v1.2.0** (2025-06-03): Major documentation and resource system addition
|
|
@@ -214,9 +224,9 @@ This project follows [Semantic Versioning](https://semver.org/):
|
|
|
214
224
|
1. Update version in `lib/rails-mcp-server/version.rb`
|
|
215
225
|
2. Update this CHANGELOG.md with new features and changes
|
|
216
226
|
3. Update README.md and documentation if needed
|
|
217
|
-
4. Create a git tag: `git tag -a v1.2.
|
|
227
|
+
4. Create a git tag: `git tag -a v1.2.3 -m "Release version 1.2.3"`
|
|
218
228
|
5. Push tags: `git push origin --tags`
|
|
219
|
-
6. Build and publish gem: `gem build rails-mcp-server.gemspec && gem push rails-mcp-server-1.2.
|
|
229
|
+
6. Build and publish gem: `gem build rails-mcp-server.gemspec && gem push rails-mcp-server-1.2.3.gem`
|
|
220
230
|
|
|
221
231
|
### Changelog Categories
|
|
222
232
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rails-mcp-server
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mario Alberto Chávez Cárdenas
|
|
8
8
|
bindir: exe
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: addressable
|
|
@@ -98,8 +98,8 @@ email:
|
|
|
98
98
|
- mario.chavez@gmail.com
|
|
99
99
|
executables:
|
|
100
100
|
- rails-mcp-server
|
|
101
|
-
- rails-mcp-setup-claude
|
|
102
101
|
- rails-mcp-server-download-resources
|
|
102
|
+
- rails-mcp-setup-claude
|
|
103
103
|
extensions: []
|
|
104
104
|
extra_rdoc_files: []
|
|
105
105
|
files:
|
|
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: '0'
|
|
173
173
|
requirements: []
|
|
174
|
-
rubygems_version:
|
|
174
|
+
rubygems_version: 4.0.0
|
|
175
175
|
specification_version: 4
|
|
176
176
|
summary: MCP server for Rails projects
|
|
177
177
|
test_files: []
|