rails-active-mcp 3.1.0 → 3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f51ec40bfd555c21e4f779d71229f61d216a8a94267c86165af1ed85a4723564
|
|
4
|
+
data.tar.gz: 39884b0d087fe8f4b669633b28f02930e61d86a3a7f7fe5c37a06b8ee7e0d506
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ed9d1296cfe23b3970140a37bf83caf5d5a0a7104a04cabe911f13f443b2ad4a63fbbfec6aa458652669d9b649c6290218b3cb0e0bbadeb42c70f4d02e0500d
|
|
7
|
+
data.tar.gz: d48173ef05b8bceb5e2520fd587b8a0f6331b1c124c77083862a3571f1d7e2c8e2ab990c8effe9885a0c4d94ef3b5babbe19b1051978f655426121c81d155260
|
data/changelog.md
CHANGED
|
@@ -8,9 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
### Changed
|
|
11
|
-
- CI: Expanded Rails matrix to include 8.0 and 8.1; added corresponding gemfiles.
|
|
12
|
-
- CI: Output JUnit XML via rspec_junit_formatter and ensure tmp/ exists for artifacts.
|
|
13
|
-
- CI: Fixed gem install step to use the correct hyphenated artifact name (rails-active-mcp-*.gem).
|
|
14
11
|
|
|
15
12
|
## [3.1.0] - 2026-02-09
|
|
16
13
|
|
|
@@ -21,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
21
18
|
- Cleaned up duplicate gem declarations in Gemfile
|
|
22
19
|
- **BREAKING**: Removed Rails < 7.0 support
|
|
23
20
|
- Added Rails 8 support
|
|
21
|
+
- CI: Expanded Rails matrix to include 8.0 and 8.1; added corresponding gemfiles.
|
|
22
|
+
- CI: Output JUnit XML via rspec_junit_formatter and ensure tmp/ exists for artifacts.
|
|
23
|
+
- CI: Fixed gem install step to use the correct hyphenated artifact name (rails-active-mcp-*.gem).
|
|
24
|
+
|
|
24
25
|
|
|
25
26
|
### Internal
|
|
26
27
|
|
|
@@ -32,10 +32,13 @@ setup_ruby_environment() {
|
|
|
32
32
|
"rbenv")
|
|
33
33
|
if [ -n "$RBENV_ROOT" ] && [ -f "$RBENV_ROOT/bin/rbenv" ]; then
|
|
34
34
|
export PATH="$RBENV_ROOT/bin:$PATH"
|
|
35
|
-
eval "$(rbenv init -)"
|
|
35
|
+
eval "$(rbenv init - bash)"
|
|
36
36
|
elif [ -f "$HOME/.rbenv/bin/rbenv" ]; then
|
|
37
37
|
export PATH="$HOME/.rbenv/bin:$PATH"
|
|
38
|
-
eval "$(rbenv init -)"
|
|
38
|
+
eval "$(rbenv init - bash)"
|
|
39
|
+
elif command -v rbenv >/dev/null 2>&1; then
|
|
40
|
+
# Homebrew or other installations where rbenv is already in PATH
|
|
41
|
+
eval "$(rbenv init - bash)"
|
|
39
42
|
fi
|
|
40
43
|
;;
|
|
41
44
|
"rvm")
|