squared 0.8.0 → 0.8.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: 2452b04f29a57fd7e41177ca45d0699c6cbfcbac259f6cd5d34c7b884e525fa3
4
- data.tar.gz: 795dbe474a4ad6e72af653fcd0bf8c80929edaa1749c7a7f0343b60e851cd954
3
+ metadata.gz: 258af4963cc0c6951fd5f14a96218cbb9cd3016714ba8b03d1fc016a7fb6d894
4
+ data.tar.gz: 58211867320953b6bd4c7fae463195e65590754369bd3cbb8896fd46e41f18d4
5
5
  SHA512:
6
- metadata.gz: be07f3621680097432f4a5f56c825af6e47603c1fbdbaaf37a12c0fbec377fa231ad9d2551ee5a6d2fe1565115dc8e8398cca35cac7f858874a178f920683879
7
- data.tar.gz: 1743bc51b54ceb5c21a1328bc83b8cb2c2e098378964e1f6bfc623984e551be215c73ef3b16b21e9258d257ba29d950b385364e874a8a6b5485bab24f3c1953c
6
+ metadata.gz: 5f0026e471c3dcfd8f75eae152732a9ce7b12347f1e5a86464434adc1fbc4ea87e3fb627c456db49145ec534255155c1e3600c623159d4420e5ab0c5c33233d0
7
+ data.tar.gz: f692395f2fdc71738669010a392cbf5fe4793edc71b920dd7873748a97bc0e5bef8cc6e17d2af93ec16d92480b86b554204fd5f4a2ce04e52d2704988cb2b3a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.8.1] - 2026-06-17
4
+
5
+ ### Fixed
6
+
7
+ - Project base method accept_y was not meant to be removed.
8
+
9
+ ## [0.7.8]
10
+
11
+ ### Fixed
12
+
13
+ - See `0.6.15`.
14
+
15
+ ## [0.6.15]
16
+
17
+ ### Fixed
18
+
19
+ - Project classes did not switch from stdout to stdin.
20
+
3
21
  ## [0.8.0] - 2026-06-16
4
22
 
5
23
  ### Added
@@ -1920,7 +1938,9 @@
1920
1938
 
1921
1939
  - Changelog was created.
1922
1940
 
1941
+ [0.8.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.8.1
1923
1942
  [0.8.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.8.0
1943
+ [0.7.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.8
1924
1944
  [0.7.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.7
1925
1945
  [0.7.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.6
1926
1946
  [0.7.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.5
@@ -1929,6 +1949,7 @@
1929
1949
  [0.7.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.2
1930
1950
  [0.7.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.1
1931
1951
  [0.7.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.0
1952
+ [0.6.15]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.15
1932
1953
  [0.6.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.14
1933
1954
  [0.6.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.13
1934
1955
  [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.8.0'
4
+ VERSION = '0.8.1'
5
5
  end
@@ -2149,8 +2149,12 @@ module Squared
2149
2149
  ret
2150
2150
  end
2151
2151
 
2152
- def accept_b(val, ret: true, yes: false)
2153
- [val, ret, yes]
2152
+ def accept_b(val, yes: false)
2153
+ [val, true, yes]
2154
+ end
2155
+
2156
+ def accept_y(val, ret: false)
2157
+ [val, ret, true]
2154
2158
  end
2155
2159
 
2156
2160
  def command_args(args, min: 0, force: false, **kwargs)
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.8.0
4
+ version: 0.8.1
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.10
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: []