gotsha 1.2.3 → 1.2.4

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: fb220efa50d1fcf743ab88b04069a95cac84bbb0e0a0f0b14e00fb1c64d2142a
4
- data.tar.gz: 523153c4bf0c11c20ab8f7e1e62d80c11b4993f40b76421cfc8f098dca42534a
3
+ metadata.gz: e2cc7b0a6d638757b14677caaa43f31683cdabd4726ad8488a2168ef08ca501a
4
+ data.tar.gz: 9020d7cd3e6145ca125fd761b6d9e25ccf99e6844dad32c2825482b552f81e39
5
5
  SHA512:
6
- metadata.gz: 7042e35f72ee02ea6b480e8bff850717b7faeb22aa70f949557d2847932c2f6de9938cc94d554645198e17d01dca44f3bc125ec77a059231ab211938a7405816
7
- data.tar.gz: fc89cd81d93194b62022a4a3271f5906a828f67bb935372ed2cd40b3065c1c7568cdac17133d3059795c1a4e138ae360d3701376ec48b40fc88965eab8c08bc1
6
+ metadata.gz: 508c0197ce27724c515f79239ace2664efe793ec0f39475f89b0efb0bc35ee84548199d86a54761efa28817728a7b1305be5afb283f3649fb17a4f6b0f1eadf6
7
+ data.tar.gz: e9e2487529629a31be43cb7e4889cc0bda5ee99f97febe8e69a1c1c17168ee4dab2e40f95603496a8a4cbbed19b6134a7faeb427878f6a3034cf574ec3ec4885
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## [1.2.4] - 2026-04-18
2
+
3
+ - Squash a bug in Ruby loading, happening in Mac with Mise
1
4
  ## [1.2.3] - 2026-04-18
2
5
 
3
6
  - Fix small bugs (security and Git integration).
@@ -18,7 +18,7 @@ module Gotsha
18
18
  exit_code = nil
19
19
 
20
20
  # This block is an ugly workaround to ensure the color output is stored both on Linux and Mac
21
- PTY.spawn("bash", "-lc", "#{command}; printf \"\\n#{MARKER}%d\\n\" $?") do |r, _w, pid|
21
+ PTY.spawn("bash", "-c", "#{command}; printf \"\\n#{MARKER}%d\\n\" $?") do |r, _w, pid|
22
22
  r.each do |line|
23
23
  if line.start_with?(MARKER)
24
24
  exit_code = line.sub(MARKER, "").to_i
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Gotsha
4
- VERSION = "1.2.3"
4
+ VERSION = "1.2.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gotsha
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitek Meloun
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
94
  - !ruby/object:Gem::Version
95
95
  version: '0'
96
96
  requirements: []
97
- rubygems_version: 4.0.6
97
+ rubygems_version: 4.0.3
98
98
  specification_version: 4
99
99
  summary: 'Gotsha: your local testing CI'
100
100
  test_files: []