squared 0.6.14 → 0.6.15

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: bf000f3929e009426b937626a3935e366f952b7faccfe57b7217c2f6bac02975
4
- data.tar.gz: 8612731d94dda35b871c85dc08f8e35a54c061d40e0846861ca70696a65e7abc
3
+ metadata.gz: 80355e12b27ecd0f289536aae720c1c8201065cbff2adeffbc03882844c5e382
4
+ data.tar.gz: a4bf1561c925f287b5188f94e9b6d0588a53483634372c76847eaf533520dc7c
5
5
  SHA512:
6
- metadata.gz: eda3163e0814ff4b26022284f187ad5137d229cfdc847ee86979fc1a1ec770b640de4261af38cff5df41878bd691d6f180dfb13b9bbd801ac22fad904e77d087
7
- data.tar.gz: fe40717e98e88842f50c3c253ca2bc7df7164a4d95a90c89f4f3f87b359c389a77cd49f4a68786bb98575d56f5100d77483f4ba6410b20001af8d251d556a965
6
+ metadata.gz: 1a4bb20091c851bd558e173905fb2d57b835aa1de91c03c903f080b2fbe6b1b75f14e55bccfec21701743c1005b33d0106fbbdabb6a87d92e053e4d624ad15e6
7
+ data.tar.gz: 32aa7376ea891b663daa3a0aa08a4dba0c814ff87ffe7da8c41fd22a53f602ee71c79d48c5c8e20c0e6b4fb6cbe447156e9a34cb1c8cbed2e8581db620627fa6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.6.15] - 2026-06-17
4
+
5
+ ### Fixed
6
+
7
+ - Project classes did not switch from stdout to stdin.
8
+
3
9
  ## [0.6.14] - 2026-06-14
4
10
 
5
11
  ### Added
@@ -1711,6 +1717,7 @@
1711
1717
 
1712
1718
  - Changelog was created.
1713
1719
 
1720
+ [0.6.15]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.15
1714
1721
  [0.6.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.14
1715
1722
  [0.6.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.13
1716
1723
  [0.6.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.12
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Squared
4
- VERSION = '0.6.14'
4
+ VERSION = '0.6.15'
5
5
  end
@@ -2509,7 +2509,7 @@ module Squared
2509
2509
  end
2510
2510
 
2511
2511
  def stdout?
2512
- !quiet? && !stdin?
2512
+ !silent? && !stdin?
2513
2513
  end
2514
2514
 
2515
2515
  def verbose?
@@ -2198,9 +2198,9 @@ module Squared
2198
2198
  end
2199
2199
 
2200
2200
  def quiet?(*, target: @session, **)
2201
- return false unless target
2201
+ return silent? unless target
2202
2202
 
2203
- target.include?('--quiet') || (target.include?('-q') && target.first.stripext == 'git')
2203
+ silent? || target.include?('--quiet') || (target.include?('-q') && target.first.stripext == 'git')
2204
2204
  end
2205
2205
 
2206
2206
  def gitpath(*args)
@@ -598,7 +598,7 @@ module Squared
598
598
  else
599
599
  val.split(/\s+/).quote!.join(' ')
600
600
  end
601
- print_run cmd, quiet?
601
+ print_run cmd, silent?
602
602
  run(cmd, banner: false)
603
603
  end
604
604
  cmd << '--workspaces=false' if ws
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: squared
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.14
4
+ version: 0.6.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - An Pham
@@ -124,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
124
  - !ruby/object:Gem::Version
125
125
  version: '0'
126
126
  requirements: []
127
- rubygems_version: 4.0.10
127
+ rubygems_version: 4.0.12
128
128
  specification_version: 4
129
129
  summary: Rake task generator for managing multi-language workspaces.
130
130
  test_files: []