legionio 1.9.38 → 1.9.39

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: 24bc1b87a13d79e82092afab9dc8b49289e8ccd1ff87a328b8fbf1aae03d1a26
4
- data.tar.gz: a042ab7323da0adf2247bfc0a81f964ed29b7d12c4c48c18703cb18bdbfc3ce2
3
+ metadata.gz: 7e168c173741e3abdcd5a911fb95506e1c599e8a934befdd8221991ebdae1185
4
+ data.tar.gz: 00a1dad9c0234f3ef0e166d9f1844bde95a8c344adb9df28fd5f095bd5fe6b49
5
5
  SHA512:
6
- metadata.gz: 0461e632dc1c9055c923742030767991205dd5479e72684dc2231548ba54a45806f6275f031c47c725527c9718a8cf4440bbea072bbbbb911baea96ea4fe004a
7
- data.tar.gz: c2844f68ffd80a5c8ab24f7e1733bd93988b94b8d5d1f215c5e13d2a4be52e4828a195218be1f6a4f7ce01ed5d5beb46d22f12aa417ca19914dd71e449cd105f
6
+ metadata.gz: 0b9bda655ae5a8b731feebf9e7bd14539c1ddc13117ad57c799921f2b7eda72a9cf3bfb45c0f64ff7967176c94a35d9471e7a099432423a2ed6e1fd9dcb663ce
7
+ data.tar.gz: 05b7947bdf2ab01cb026c0afd1bc2d0b385ec643a3f486b3b749ee676ba9383ce3cc276304abd7f60fb317f7f11a1e75f3578b6f06b4d93f9dcca0b77ed5735d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Legion Changelog
2
2
 
3
+ ## [1.9.39] - 2026-05-30
4
+
5
+ ### Fixed
6
+ - CLI: remove `--clear-sources` from `gem install` in bootstrap and setup commands (breaks pack reinstall when custom sources are configured)
7
+
3
8
  ## [1.9.38] - 2026-05-30
4
9
 
5
10
  ### Fixed
@@ -293,7 +293,7 @@ module Legion
293
293
 
294
294
  def install_single_gem(name, gem_bin, out)
295
295
  puts " Installing #{name}..." unless options[:json]
296
- output, success = shell_capture("#{gem_bin} install #{name} --no-document --clear-sources --source https://rubygems.org/")
296
+ output, success = shell_capture("#{gem_bin} install #{name} --no-document --source https://rubygems.org/")
297
297
  if success
298
298
  out.success(" #{name} installed") unless options[:json]
299
299
  { name: name, status: 'installed' }
@@ -501,7 +501,7 @@ module Legion
501
501
 
502
502
  def install_gem(name, gem_bin, out)
503
503
  puts " Installing #{name}..." unless options[:json]
504
- output = `#{gem_bin} install #{name} --no-document --clear-sources --source https://rubygems.org/ 2>&1`
504
+ output = `#{gem_bin} install #{name} --no-document --source https://rubygems.org/ 2>&1`
505
505
  if $CHILD_STATUS.success?
506
506
  out.success(" #{name} installed") unless options[:json]
507
507
  { name: name, status: 'installed' }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Legion
4
- VERSION = '1.9.38'
4
+ VERSION = '1.9.39'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: legionio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.38
4
+ version: 1.9.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esity