squared 0.7.7 → 0.7.8
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 +4 -4
- data/CHANGELOG.md +14 -0
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/project/base.rb +2 -6
- data/lib/squared/workspace/project/git.rb +2 -2
- data/lib/squared/workspace/project/node.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c4eb1673e7842e505bf21625b8452292591fa243e04d7481f44b889f0e4c22b
|
|
4
|
+
data.tar.gz: a44d3b23a26deba7d5cec9559a82d1d53545f9c6e78d55108f90f3221013d4df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2413955e422ad4b3d7d7a90d155848bd6a359bb42f212cbb67f20ed1eac8a8a7bd895e90decf99bfdfcc05ddf90d0363a9e48111bf4843de97b23930e81e7a3
|
|
7
|
+
data.tar.gz: b85dfd373270eb1cc285156902cc06f1a14591270dc94e8a0f4cbc1951f8cd39b0475ef92cd0f0629f84fb55a149eb4cf17a549105eb5813072127eb67a6affa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.7.8] - 2026-06-17
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- See `0.6.15`.
|
|
8
|
+
|
|
9
|
+
## [0.6.15]
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Project classes did not switch from stdout to stdin.
|
|
14
|
+
|
|
3
15
|
## [0.7.7] - 2026-06-15
|
|
4
16
|
|
|
5
17
|
### Added
|
|
@@ -1879,6 +1891,7 @@
|
|
|
1879
1891
|
|
|
1880
1892
|
- Changelog was created.
|
|
1881
1893
|
|
|
1894
|
+
[0.7.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.8
|
|
1882
1895
|
[0.7.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.7
|
|
1883
1896
|
[0.7.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.6
|
|
1884
1897
|
[0.7.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.5
|
|
@@ -1887,6 +1900,7 @@
|
|
|
1887
1900
|
[0.7.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.2
|
|
1888
1901
|
[0.7.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.1
|
|
1889
1902
|
[0.7.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.0
|
|
1903
|
+
[0.6.15]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.15
|
|
1890
1904
|
[0.6.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.14
|
|
1891
1905
|
[0.6.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.13
|
|
1892
1906
|
[0.6.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.12
|
data/lib/squared/version.rb
CHANGED
|
@@ -2410,11 +2410,7 @@ module Squared
|
|
|
2410
2410
|
yield
|
|
2411
2411
|
end
|
|
2412
2412
|
rescue Timeout::Error => e
|
|
2413
|
-
|
|
2414
|
-
print_error(Logger::ERROR, cmd, subject: name, hint: e)
|
|
2415
|
-
else
|
|
2416
|
-
print_error(Logger::ERROR, e, subject: name)
|
|
2417
|
-
end
|
|
2413
|
+
print_error(Logger::ERROR, e, subject: name, hint: cmd)
|
|
2418
2414
|
exit 1 unless exception?(Logger::DEBUG, Logger::INFO)
|
|
2419
2415
|
rescue => e
|
|
2420
2416
|
on_error(e, from, **kwargs)
|
|
@@ -2702,7 +2698,7 @@ module Squared
|
|
|
2702
2698
|
end
|
|
2703
2699
|
|
|
2704
2700
|
def stdout?
|
|
2705
|
-
!
|
|
2701
|
+
!silent? && !stdin?
|
|
2706
2702
|
end
|
|
2707
2703
|
|
|
2708
2704
|
def verbose?
|
|
@@ -2287,9 +2287,9 @@ module Squared
|
|
|
2287
2287
|
end
|
|
2288
2288
|
|
|
2289
2289
|
def quiet?(*, target: @session, **)
|
|
2290
|
-
return
|
|
2290
|
+
return silent? unless target
|
|
2291
2291
|
|
|
2292
|
-
target.include?('--quiet') || (target.include?('-q') && target.first.stripext == 'git')
|
|
2292
|
+
silent? || target.include?('--quiet') || (target.include?('-q') && target.first.stripext == 'git')
|
|
2293
2293
|
end
|
|
2294
2294
|
|
|
2295
2295
|
def gitpath(*args)
|
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.7.
|
|
4
|
+
version: 0.7.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- An Pham
|
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
rubygems_version: 4.0.
|
|
128
|
+
rubygems_version: 4.0.12
|
|
129
129
|
specification_version: 4
|
|
130
130
|
summary: Rake task generator for managing multi-language workspaces.
|
|
131
131
|
test_files: []
|