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: 5e6f12134560393b1599733a6930210fa87e4855256b6554395847d81e1690c0
4
- data.tar.gz: cdec6fde55f4fcf3e0bcb78960dcd3464e84e358a1206baf7ebb41984a40ed21
3
+ metadata.gz: f51ec40bfd555c21e4f779d71229f61d216a8a94267c86165af1ed85a4723564
4
+ data.tar.gz: 39884b0d087fe8f4b669633b28f02930e61d86a3a7f7fe5c37a06b8ee7e0d506
5
5
  SHA512:
6
- metadata.gz: e7abbeeff33ad044bd08d73550c9dc1b24dcced7db200734c2842b0c7760533d2fdeb388c5e468e6216807a0bbca03c6dc36620495d335f71966d78d5e2b0557
7
- data.tar.gz: 895df97ae5a0880df7b06781c64f9655b9464df36892174214a222079eff8825b3765f12278c51418a81b671831256ccf72ce3336213b3882504da7c0112b082
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")
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsActiveMcp
4
- VERSION = '3.1.0'
4
+ VERSION = '3.1.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-active-mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandyn Britton