squared 0.7.10 → 0.8.0
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 +44 -79
- data/README.md +38 -35
- data/lib/squared/common/base.rb +0 -8
- data/lib/squared/common/format.rb +5 -14
- data/lib/squared/common/prompt.rb +26 -25
- data/lib/squared/common/shell.rb +11 -11
- data/lib/squared/common/system.rb +9 -19
- data/lib/squared/common/utils.rb +18 -22
- data/lib/squared/config.rb +5 -12
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +99 -31
- data/lib/squared/workspace/project/base.rb +81 -88
- data/lib/squared/workspace/project/docker.rb +42 -41
- data/lib/squared/workspace/project/git.rb +169 -72
- data/lib/squared/workspace/project/node.rb +171 -135
- data/lib/squared/workspace/project/python.rb +51 -50
- data/lib/squared/workspace/project/ruby.rb +54 -46
- data/lib/squared/workspace/project/support/class.rb +2 -2
- data/lib/squared/workspace/project/support/optionpartition.rb +7 -10
- data/lib/squared/workspace/project/support/utils.rb +15 -22
- data/lib/squared/workspace/repo.rb +9 -6
- data/lib/squared/workspace/series.rb +12 -5
- 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: 2452b04f29a57fd7e41177ca45d0699c6cbfcbac259f6cd5d34c7b884e525fa3
|
|
4
|
+
data.tar.gz: 795dbe474a4ad6e72af653fcd0bf8c80929edaa1749c7a7f0343b60e851cd954
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be07f3621680097432f4a5f56c825af6e47603c1fbdbaaf37a12c0fbec377fa231ad9d2551ee5a6d2fe1565115dc8e8398cca35cac7f858874a178f920683879
|
|
7
|
+
data.tar.gz: 1743bc51b54ceb5c21a1328bc83b8cb2c2e098378964e1f6bfc623984e551be215c73ef3b16b21e9258d257ba29d950b385364e874a8a6b5485bab24f3c1953c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,79 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
4
|
-
|
|
5
|
-
### Fixed
|
|
6
|
-
|
|
7
|
-
- See `0.6.17`.
|
|
8
|
-
|
|
9
|
-
## [0.6.17]
|
|
10
|
-
|
|
11
|
-
### Added
|
|
12
|
-
|
|
13
|
-
- NPM command install can bypass engines with ENV and engine-strict=false.
|
|
14
|
-
|
|
15
|
-
### Fixed
|
|
16
|
-
|
|
17
|
-
- Ruby command gem action push interactive file selector did nothing.
|
|
18
|
-
- Git choice prompt did not permit optional empty values.
|
|
19
|
-
|
|
20
|
-
## [0.4.40]
|
|
21
|
-
|
|
22
|
-
### Changed
|
|
23
|
-
|
|
24
|
-
- Series method exclude? was made compatible with v0.8 signature.
|
|
25
|
-
|
|
26
|
-
## [0.7.9] - 2026-07-04
|
|
27
|
-
|
|
28
|
-
### Added
|
|
29
|
-
|
|
30
|
-
- Docker command image action inspect was implemented.
|
|
31
|
-
|
|
32
|
-
### Changed
|
|
33
|
-
|
|
34
|
-
- Project global ENV for BANNER and STRICT can accept boolean values.
|
|
35
|
-
|
|
36
|
-
## [0.6.16]
|
|
3
|
+
## [0.8.0] - 2026-06-16
|
|
37
4
|
|
|
38
5
|
### Added
|
|
39
6
|
|
|
40
|
-
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
-
|
|
47
|
-
|
|
48
|
-
|
|
7
|
+
- Application method join for group task invoke was created.
|
|
8
|
+
- Ruby command gem action push can use wildcard paths.
|
|
9
|
+
- Ruby command gem action build can use wildcard paths.
|
|
10
|
+
- Docker command container action attach was implemented.
|
|
11
|
+
- Application method join can be run in parallel.
|
|
12
|
+
- Project base method semver supports bumping prerelease.
|
|
13
|
+
- Node command bump supports incrementing a private workspace.
|
|
14
|
+
- Project base class implemented Enumerable each method.
|
|
15
|
+
- Ruby command gem action outdated can be pinned by semver.
|
|
16
|
+
- Node command publish action stage was implemented.
|
|
17
|
+
- Git command remote was implemented.
|
|
49
18
|
|
|
50
19
|
### Changed
|
|
51
20
|
|
|
52
|
-
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
-
|
|
21
|
+
- Node task outdated does not modify without a full semver range.
|
|
22
|
+
- OptionPartition static methods do not support unknown arguments.
|
|
23
|
+
- Readline/Reline is no longer loaded into global namespace.
|
|
24
|
+
- JRuby/TruffleRuby are no longer given any special treatment.
|
|
25
|
+
- Common shell lib does not include PATH when used as module function.
|
|
26
|
+
- Override methods using suffix "!" were renamed to "\_".
|
|
27
|
+
- Common method as_a checks for to_ary after to_a.
|
|
28
|
+
- Node command bump was condensed into one subtask.
|
|
29
|
+
- Git event name revbuild was separated into git:revbuild:[before|after].
|
|
30
|
+
- Git command stash action [branch|clear|list|all|staged|worktree] were grouped.
|
|
31
|
+
- Project methods with prefix parameter were converted into keyword.
|
|
32
|
+
- Project base method accept_b parameters were converted into keyword.
|
|
33
|
+
- Class methods with a ref parameter were converted into keyword.
|
|
64
34
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Fixed
|
|
35
|
+
### Removed
|
|
68
36
|
|
|
69
|
-
-
|
|
37
|
+
- Common format method raise_error was removed.
|
|
70
38
|
|
|
71
39
|
## [0.7.7] - 2026-06-15
|
|
72
40
|
|
|
73
41
|
### Added
|
|
74
42
|
|
|
75
43
|
- Ruby program commands can be run through bundle exec.
|
|
76
|
-
- Node task depend can run approve-scripts with NPM_APPROVE_SCRIPTS.
|
|
77
44
|
- Node command package action [approve|deny] was implemented.
|
|
78
45
|
- NPM command options were updated to 11.16.
|
|
79
46
|
|
|
@@ -312,6 +279,7 @@
|
|
|
312
279
|
- Application class supports extensions used during build finalization.
|
|
313
280
|
- Docker command bake action compose to build with defaults was implemented.
|
|
314
281
|
- Program asdf legacy global installations using ASDF_DIR is supported.
|
|
282
|
+
- Docker command compose action publish was implemented.
|
|
315
283
|
|
|
316
284
|
### Changed
|
|
317
285
|
|
|
@@ -339,7 +307,6 @@
|
|
|
339
307
|
- Application project classes can only be injected using static methods.
|
|
340
308
|
- Tasks can only be excluded through Appliction build instance method.
|
|
341
309
|
- Project base utility methods were relocated to Support namespace.
|
|
342
|
-
- Ruby class private method run_rb was removed.
|
|
343
310
|
- Application attribute exception accept Logger levels to route errors.
|
|
344
311
|
- Ruby command irb always includes local development require paths.
|
|
345
312
|
- Bundler tasks are hidden when package is not installed.
|
|
@@ -347,7 +314,10 @@
|
|
|
347
314
|
- Application method with renamed pass to hide due to conflict with Project.
|
|
348
315
|
- Node task depend using Yarn no longer sets option ignore-engines by default.
|
|
349
316
|
- Project base private instance variable events was relocated.
|
|
350
|
-
|
|
317
|
+
|
|
318
|
+
### Removed
|
|
319
|
+
|
|
320
|
+
- Ruby class private method run_rb was removed.
|
|
351
321
|
|
|
352
322
|
### Fixed
|
|
353
323
|
|
|
@@ -722,7 +692,6 @@
|
|
|
722
692
|
|
|
723
693
|
- Git method source will raise error when checking exit status.
|
|
724
694
|
- Date gem is no longer globally required.
|
|
725
|
-
- Global task git:all was removed.
|
|
726
695
|
- Common base method as_a was relocated to Utils.
|
|
727
696
|
- Python command build and publish detects only one backend.
|
|
728
697
|
- Docker command compose action ps was renamed service.
|
|
@@ -730,14 +699,12 @@
|
|
|
730
699
|
- Project base method success? conditionally calls print_success method.
|
|
731
700
|
- Error classes were not specified for invalid operation.
|
|
732
701
|
- Common format methods stripstyle and stripext are String instance methods.
|
|
733
|
-
- Common format method alias puts_oe was removed.
|
|
734
702
|
- Git commands without a valid action will exit with error status.
|
|
735
703
|
- Errno exceptions are used in place of SystemCallError.
|
|
736
704
|
- Common format method raise_error defaults to RuntimeError.
|
|
737
705
|
- OptionPartition delegator method delete_at was renamed remove_at.
|
|
738
706
|
- Node event name "publish" was renamed to "npm:publish".
|
|
739
707
|
- Project task run with a Method passes self as first argument.
|
|
740
|
-
- Ruby command check was removed.
|
|
741
708
|
- Ruby method gem! was renamed gem.
|
|
742
709
|
- Ruby methods ruby and irb first argument was converted into kwargs.
|
|
743
710
|
- Ruby method rake executes all tasks in one run command.
|
|
@@ -753,12 +720,18 @@
|
|
|
753
720
|
- Project base method run_s uses last argument for ENV hash.
|
|
754
721
|
- Project base method inject does not exit program when raised.
|
|
755
722
|
- Reline gem is installed only when using at least Ruby 3.0.
|
|
756
|
-
- Python method install arguments strategy and user were removed.
|
|
757
723
|
- Project command outdated does not support threading when interactive.
|
|
758
724
|
- Project base accessor global was converted into a reader and setter.
|
|
759
725
|
- Repo build can simultaneously use script and run through REPO_BUILD.
|
|
760
726
|
- Repo static method read_manifest was made an instance method named repo_manifest.
|
|
761
727
|
|
|
728
|
+
### Removed
|
|
729
|
+
|
|
730
|
+
- Global task git:all was removed.
|
|
731
|
+
- Common format method alias puts_oe was removed.
|
|
732
|
+
- Ruby command check was removed.
|
|
733
|
+
- Python method install arguments strategy and user were removed.
|
|
734
|
+
|
|
762
735
|
### Fixed
|
|
763
736
|
|
|
764
737
|
- Node task update did not check equivalent ENV install options.
|
|
@@ -1355,6 +1328,10 @@
|
|
|
1355
1328
|
|
|
1356
1329
|
## [0.3.10]
|
|
1357
1330
|
|
|
1331
|
+
### Removed
|
|
1332
|
+
|
|
1333
|
+
- Git command files action ignored could not be used alone.
|
|
1334
|
+
|
|
1358
1335
|
### Fixed
|
|
1359
1336
|
|
|
1360
1337
|
- Git command reset action commit used invalid delimeter.
|
|
@@ -1362,10 +1339,6 @@
|
|
|
1362
1339
|
- Project script task did not fire first and last callbacks.
|
|
1363
1340
|
- Git checkout action commit did not include options.
|
|
1364
1341
|
|
|
1365
|
-
### Removed
|
|
1366
|
-
|
|
1367
|
-
- Git command files action ignored could not be used alone.
|
|
1368
|
-
|
|
1369
1342
|
## [0.2.10]
|
|
1370
1343
|
|
|
1371
1344
|
### Fixed
|
|
@@ -1947,9 +1920,7 @@
|
|
|
1947
1920
|
|
|
1948
1921
|
- Changelog was created.
|
|
1949
1922
|
|
|
1950
|
-
[0.
|
|
1951
|
-
[0.7.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.9
|
|
1952
|
-
[0.7.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.8
|
|
1923
|
+
[0.8.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.8.0
|
|
1953
1924
|
[0.7.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.7
|
|
1954
1925
|
[0.7.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.6
|
|
1955
1926
|
[0.7.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.5
|
|
@@ -1958,9 +1929,6 @@
|
|
|
1958
1929
|
[0.7.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.2
|
|
1959
1930
|
[0.7.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.1
|
|
1960
1931
|
[0.7.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.0
|
|
1961
|
-
[0.6.17]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.17
|
|
1962
|
-
[0.6.16]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.16
|
|
1963
|
-
[0.6.15]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.15
|
|
1964
1932
|
[0.6.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.14
|
|
1965
1933
|
[0.6.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.13
|
|
1966
1934
|
[0.6.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.12
|
|
@@ -1976,7 +1944,6 @@
|
|
|
1976
1944
|
[0.6.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.2
|
|
1977
1945
|
[0.6.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.1
|
|
1978
1946
|
[0.6.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.0
|
|
1979
|
-
[0.5.25]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.25
|
|
1980
1947
|
[0.5.24]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.24
|
|
1981
1948
|
[0.5.23]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.23
|
|
1982
1949
|
[0.5.22]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.22
|
|
@@ -2002,8 +1969,6 @@
|
|
|
2002
1969
|
[0.5.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.2-ruby
|
|
2003
1970
|
[0.5.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.1-ruby
|
|
2004
1971
|
[0.5.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.0-ruby
|
|
2005
|
-
[0.4.40]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.40
|
|
2006
|
-
[0.4.39]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.39
|
|
2007
1972
|
[0.4.38]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.38
|
|
2008
1973
|
[0.4.37]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.37
|
|
2009
1974
|
[0.4.36]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.36
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# squared 0.
|
|
1
|
+
# squared 0.8
|
|
2
2
|
|
|
3
3
|
* [source](https://github.com/anpham6/squared-ruby)
|
|
4
4
|
* [docs](https://squared.readthedocs.io)
|
|
@@ -11,11 +11,12 @@
|
|
|
11
11
|
| 2025-01-07 | 0.2.0 | | 3.4.0 | |
|
|
12
12
|
| 2025-02-07 | 0.3.0 | | 3.4.1 | |
|
|
13
13
|
| 2025-03-06 | 0.4.0 | | 3.4.2 | * |
|
|
14
|
-
| 2025-06-16 | 0.5.0 | 2.5.0 | 3.4.4 |
|
|
14
|
+
| 2025-06-16 | 0.5.0 | 2.5.0 | 3.4.4 | |
|
|
15
15
|
| ---------- | ----- | ----- | ----- | --- |
|
|
16
16
|
| 2025-08-23 | 0.5.5 | | 3.4.5 | |
|
|
17
17
|
| 2025-10-31 | 0.6.0 | | 3.4.7 | * |
|
|
18
18
|
| 2026-01-07 | 0.7.0 | 2.5.0 | 4.0.0 | * |
|
|
19
|
+
| 2026-06-16 | 0.8.0 | | 4.0.5 | * |
|
|
19
20
|
|
|
20
21
|
The range chart indicates the *latest* Ruby tested against at the time of release.
|
|
21
22
|
|
|
@@ -47,7 +48,6 @@ require "squared/app" # All workspace related modules
|
|
|
47
48
|
# log = /workspaces/logger
|
|
48
49
|
# emc = /workspaces/e-mc
|
|
49
50
|
# pir = /workspaces/pi-r
|
|
50
|
-
# pir2 = /workspaces/pi-r2
|
|
51
51
|
# squared = /workspaces/squared
|
|
52
52
|
# cli = /workspaces/squared/publish/sqd-cli
|
|
53
53
|
# sqd-serve = /workspaces/squared/publish/sqd-serve
|
|
@@ -74,7 +74,6 @@ Workspace::Application
|
|
|
74
74
|
end
|
|
75
75
|
.add("e-mc", "emc", copy: { from: "publish", scope: "@e-mc", also: [:pir, "squared-express/"] }, ref: :node) # Node
|
|
76
76
|
.add("pi-r", "pir", copy: { from: "publish", scope: "@pi-r" }, clean: ["publish/**/*.js", "tmp/"]) # Trailing slash required for directories
|
|
77
|
-
.add("pi-r2", "pir2", copy: { from: :npm, also: %i[squared express], files: ["LICENSE", ["README.md.ruby", "README.md"]] }) # Uses dist files from NPM package spec
|
|
78
77
|
.add("squared", init: "pnpm", script: ["build:stage1", "build:stage2"], group: "app") do # Use pnpm/yarn/berry for depend + Copy target (main)
|
|
79
78
|
# Repo (global)
|
|
80
79
|
as(:run, "build:dev", "dev") # npm run build:dev -> npm run dev
|
|
@@ -179,6 +178,12 @@ Workspace::Application
|
|
|
179
178
|
pip("wheel", with: "build:dev") # pip wheel -r "/chrome-docs/requirements.txt" --no-deps
|
|
180
179
|
}
|
|
181
180
|
end
|
|
181
|
+
|
|
182
|
+
join("venv", invoke: "venv:remove", args: ["create"]) # rake venv:python => rake android:venv:remove[create] => chrome:venv:remove[create]
|
|
183
|
+
join("venv", "venv:remove", "create", sync: false) # PYTHON_ARGS=depend,dry-run rake venv:python => rake android:venv:remove[depend,dry-run] | chrome:venv:remove[depend,dry-run]
|
|
184
|
+
join("pwd") do # rake pwd:python => "/workspaces/android-docs" => "/workspaces/chrome-docs"
|
|
185
|
+
puts self.path
|
|
186
|
+
end
|
|
182
187
|
end
|
|
183
188
|
.style("inline", "bold")
|
|
184
189
|
.stage("init:project") { puts self.path } # modify attributes before building tasks (init | begin | project:begin/end | populate | extensions | series | finalize | end)
|
|
@@ -284,9 +289,6 @@ Workspace::Application
|
|
|
284
289
|
add("pi-r", "pir") do
|
|
285
290
|
chain "all", "build", after: "emc:build" # step: 3
|
|
286
291
|
end
|
|
287
|
-
add("pi-r2", "pir2") do
|
|
288
|
-
chain "all", "build", before: "squared" # step: 3
|
|
289
|
-
end
|
|
290
292
|
add("squared-express", "express") do
|
|
291
293
|
chain "all", "clean", with: "emc" # step: 1
|
|
292
294
|
chain "all", "build", with: "pir" # step: 3
|
|
@@ -547,6 +549,7 @@ Most project classes will inherit from `Git` which enables these tasks:
|
|
|
547
549
|
| pull | pull | origin remote all |
|
|
548
550
|
| range-diff | range-diff | view between contain |
|
|
549
551
|
| rebase | rebase | branch onto send |
|
|
552
|
+
| remote | remote | add select |
|
|
550
553
|
| refs | ls-remote --refs | heads tags remote |
|
|
551
554
|
| reset | reset | commit index patch mode undo |
|
|
552
555
|
| restore | restore | source staged worktree |
|
|
@@ -868,44 +871,44 @@ Features can be enabled through ENV when calling global tasks such as through *C
|
|
|
868
871
|
|
|
869
872
|
* Prefix: BUNDLE/GEM/RBS
|
|
870
873
|
|
|
871
|
-
| Command | Flag | ENV
|
|
872
|
-
| :--------- | :-------- |
|
|
873
|
-
| depend | - | BINSTUBS=s JOBS=n
|
|
874
|
-
| depend | update | VERSION=major|minor|patch STRICT CONSERVATIVE
|
|
875
|
-
| outdated | - | U|UPDATE=major|minor|patch ONLY_EXPLICIT DRY_RUN
|
|
876
|
-
| gem | outdated | DOCUMENT=0,1 USER_INSTALL=0,1
|
|
877
|
-
| rbs | prototype | Y=0,1
|
|
874
|
+
| Command | Flag | ENV |
|
|
875
|
+
| :--------- | :-------- | :---------------------------------------------------------- |
|
|
876
|
+
| depend | - | BINSTUBS=s JOBS=n |
|
|
877
|
+
| depend | update | VERSION=major|minor|patch STRICT CONSERVATIVE |
|
|
878
|
+
| outdated | - | U|UPDATE=major|minor|patch ONLY_EXPLICIT DRY_RUN |
|
|
879
|
+
| gem | outdated | DOCUMENT=0,1 USER_INSTALL=0,1 |
|
|
880
|
+
| rbs | prototype | Y=0,1 |
|
|
878
881
|
|
|
879
882
|
#### Node
|
|
880
883
|
|
|
881
884
|
* Prefix: NPM/PNPM/YARN
|
|
882
885
|
|
|
883
|
-
| Command | Flag | ENV
|
|
884
|
-
| :------------- | :------------- |
|
|
885
|
-
| depend | - | FORCE CI IGNORE_SCRIPTS
|
|
886
|
-
| outdated | - | U|UPDATE=major|minor|patch DIFF DRY_RUN
|
|
887
|
-
| publish | - | OTP=s TAG=s ACCESS=0,1,s DRY_RUN Y
|
|
888
|
-
| depend package | * | PACAKGE_LOCK|LOCKFILE=0 NO_LOCKFILE=1 Y
|
|
889
|
-
| npm | depend | APPROVE_SCRIPTS=
|
|
890
|
-
| npm | package | SAVE IGNORE_SCRIPTS STRICT_PEER_DEPS
|
|
891
|
-
| pnpm | depend | PUBLIC_HOIST_PATTERN=s APPROVE_BUILDS
|
|
892
|
-
| pnpm | depend:add | ALLOW_BUILD=s
|
|
893
|
-
| yarn | depend package | IGNORE_ENGINES
|
|
894
|
-
| yarn | depend:add | W|IGNORE_WORKSPACE_ROOT_CHECK=0
|
|
895
|
-
| npm pnpm | depend package | CPU=s OS=s LIBC=s
|
|
886
|
+
| Command | Flag | ENV |
|
|
887
|
+
| :------------- | :------------- | :------------------------------------------------- |
|
|
888
|
+
| depend | - | FORCE CI IGNORE_SCRIPTS |
|
|
889
|
+
| outdated | - | U|UPDATE=major|minor|patch SAVE_EXACT DIFF DRY_RUN |
|
|
890
|
+
| publish | - | OTP=s TAG=s ACCESS=0,1,s DRY_RUN Y |
|
|
891
|
+
| depend package | * | PACAKGE_LOCK|LOCKFILE=0 NO_LOCKFILE=1 Y |
|
|
892
|
+
| npm | depend | APPROVE_SCRIPTS=s |
|
|
893
|
+
| npm | package | SAVE IGNORE_SCRIPTS STRICT_PEER_DEPS |
|
|
894
|
+
| pnpm | depend | PUBLIC_HOIST_PATTERN=s APPROVE_BUILDS |
|
|
895
|
+
| pnpm | depend:add | ALLOW_BUILD=s |
|
|
896
|
+
| yarn | depend package | IGNORE_ENGINES |
|
|
897
|
+
| yarn | depend:add | W|IGNORE_WORKSPACE_ROOT_CHECK=0 |
|
|
898
|
+
| npm pnpm | depend package | CPU=s OS=s LIBC=s |
|
|
896
899
|
|
|
897
900
|
#### Python
|
|
898
901
|
|
|
899
902
|
* Prefix: PIP/POETRY
|
|
900
903
|
|
|
901
|
-
| Command | Flag | ENV
|
|
902
|
-
| :--------- | :-------- |
|
|
903
|
-
| global | * | CACHE_DIR=0,s PROXY=s PYTHON=s COLOR=0
|
|
904
|
-
| depend | - | E|EDITABLE=0,s BUILD_ISOLATION=0
|
|
905
|
-
| outdated | - | U|UPDATE=major|minor|patch NOT_REQUIRED=0 L|LOCAL DRY_RUN
|
|
906
|
-
| venv | exec | INTERACTIVE=0
|
|
907
|
-
| poetry | * | PROJECT=s
|
|
908
|
-
| poetry | depend | NO_ROOT
|
|
904
|
+
| Command | Flag | ENV |
|
|
905
|
+
| :--------- | :-------- | :---------------------------------------------------------- |
|
|
906
|
+
| global | * | CACHE_DIR=0,s PROXY=s PYTHON=s COLOR=0 |
|
|
907
|
+
| depend | - | E|EDITABLE=0,s BUILD_ISOLATION=0 |
|
|
908
|
+
| outdated | - | U|UPDATE=major|minor|patch NOT_REQUIRED=0 L|LOCAL DRY_RUN |
|
|
909
|
+
| venv | exec | INTERACTIVE=0 |
|
|
910
|
+
| poetry | * | PROJECT=s |
|
|
911
|
+
| poetry | depend | NO_ROOT |
|
|
909
912
|
|
|
910
913
|
## LICENSE
|
|
911
914
|
|
data/lib/squared/common/base.rb
CHANGED
|
@@ -18,7 +18,6 @@ module Squared
|
|
|
18
18
|
GRAPH: %w[| - | \\ -].freeze,
|
|
19
19
|
BORDER: %w[| - - - - - | | - -].freeze,
|
|
20
20
|
VIEW: 'view',
|
|
21
|
-
BACKTRACE: $DEBUG || !$VERBOSE.nil?,
|
|
22
21
|
LEVEL: ENV.fetch('LOG_LEVEL', 0).to_i,
|
|
23
22
|
COLOR: ENV.fetch('NO_COLOR', '').empty?
|
|
24
23
|
}
|
|
@@ -92,13 +91,6 @@ module Squared
|
|
|
92
91
|
VAR[key.is_a?(::String) ? key.to_sym : key] = val
|
|
93
92
|
end
|
|
94
93
|
|
|
95
|
-
def __arg__(key, name = nil, &blk)
|
|
96
|
-
ret = ARG[key.to_sym]
|
|
97
|
-
return ret unless name && ret.is_a?(::Hash)
|
|
98
|
-
|
|
99
|
-
ret[name = name.downcase] || (block_given? ? ret.fetch(name.to_sym, &blk) : ret[name.to_sym])
|
|
100
|
-
end
|
|
101
|
-
|
|
102
94
|
def __freeze__
|
|
103
95
|
PATH.freeze
|
|
104
96
|
ARG.freeze
|
|
@@ -41,7 +41,7 @@ module Squared
|
|
|
41
41
|
|
|
42
42
|
String.define_method(:stripstyle) { gsub(/\x1B\[(?:\d+;?)+m/, '') }
|
|
43
43
|
String.define_method(:stripext) { File.basename(self, '.*') }
|
|
44
|
-
String.define_method(:subhint) { |s| s.nil? || (s.
|
|
44
|
+
String.define_method(:subhint) { |s| s.nil? || (s.respond_to?(:empty?) && s.empty?) ? self : "#{self} (#{s})" }
|
|
45
45
|
|
|
46
46
|
def enable_aixterm
|
|
47
47
|
unless (colors = __get__(:colors)).frozen?
|
|
@@ -62,9 +62,9 @@ module Squared
|
|
|
62
62
|
return val unless ARG[:COLOR]
|
|
63
63
|
|
|
64
64
|
ret = if pat && index != 0
|
|
65
|
-
return val unless (
|
|
65
|
+
return val unless (md = pat.match(val))
|
|
66
66
|
|
|
67
|
-
index == -1 ?
|
|
67
|
+
index == -1 ? md.to_a.drop(1) : md[index]
|
|
68
68
|
else
|
|
69
69
|
index = 0
|
|
70
70
|
val
|
|
@@ -110,10 +110,10 @@ module Squared
|
|
|
110
110
|
return ret.join if index == -1
|
|
111
111
|
|
|
112
112
|
ret = wrap.call(ret, code) unless code.empty?
|
|
113
|
-
return ret unless
|
|
113
|
+
return ret unless md
|
|
114
114
|
|
|
115
115
|
out = +''
|
|
116
|
-
|
|
116
|
+
md.to_a.each_with_index do |group, i|
|
|
117
117
|
next if i == 0
|
|
118
118
|
|
|
119
119
|
if i == index
|
|
@@ -319,15 +319,6 @@ module Squared
|
|
|
319
319
|
err ? warn(out) : puts(out)
|
|
320
320
|
end
|
|
321
321
|
end
|
|
322
|
-
|
|
323
|
-
def raise_error(*args, hint: nil, kind: RuntimeError, start: 0)
|
|
324
|
-
kind = args.shift if args.first.is_a?(::Class) && args.first < ::Exception
|
|
325
|
-
raise kind, message(*args, hint: hint, empty: true), if ARG[:BACKTRACE]
|
|
326
|
-
caller(start.succ)
|
|
327
|
-
else
|
|
328
|
-
caller_locations(start.succ, 1).first&.base_label
|
|
329
|
-
end
|
|
330
|
-
end
|
|
331
322
|
end
|
|
332
323
|
end
|
|
333
324
|
end
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
unless defined?(Readline)
|
|
4
|
-
if RUBY_ENGINE == 'ruby' && RUBY_VERSION < '2.7'
|
|
5
|
-
require 'readline'
|
|
6
|
-
else
|
|
7
|
-
begin
|
|
8
|
-
require 'reline'
|
|
9
|
-
Object.send(:remove_const, :Readline) if Object.const_defined?(:Readline)
|
|
10
|
-
Readline = Reline
|
|
11
|
-
rescue LoadError
|
|
12
|
-
require 'readline' rescue LoadError
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|
|
16
|
-
|
|
17
3
|
module Squared
|
|
18
4
|
module Common
|
|
19
5
|
module Prompt
|
|
6
|
+
def self.reline
|
|
7
|
+
if RUBY_ENGINE == 'ruby' && RUBY_VERSION < '2.7'
|
|
8
|
+
require 'readline'
|
|
9
|
+
Readline
|
|
10
|
+
else
|
|
11
|
+
begin
|
|
12
|
+
require 'reline'
|
|
13
|
+
Reline
|
|
14
|
+
rescue LoadError
|
|
15
|
+
require 'readline'
|
|
16
|
+
Readline
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
20
|
+
|
|
20
21
|
module_function
|
|
21
22
|
|
|
22
|
-
def confirm(msg,
|
|
23
|
+
def confirm(msg, accept = nil, agree: 'Y', cancel: 'N', force: false, attempts: 3, timeout: 60)
|
|
23
24
|
require 'timeout'
|
|
24
|
-
if agree == 'Y' && cancel == 'N' && !msg.match?(%r{\[(
|
|
25
|
-
case
|
|
25
|
+
if agree == 'Y' && cancel == 'N' && !msg.match?(%r{\[(Yn|nY|Y/n|y/N)\]})
|
|
26
|
+
case accept
|
|
26
27
|
when 'Y'
|
|
27
28
|
msg = "#{msg} [Y/n] "
|
|
28
29
|
when 'N'
|
|
@@ -32,9 +33,9 @@ module Squared
|
|
|
32
33
|
agree = /^#{Regexp.escape(agree)}$/i if agree.is_a?(::String)
|
|
33
34
|
cancel = /^#{Regexp.escape(cancel)}$/i if cancel.is_a?(::String)
|
|
34
35
|
Timeout.timeout(timeout) do
|
|
35
|
-
while (ch =
|
|
36
|
+
while (ch = Prompt.reline.readline(msg))
|
|
36
37
|
ch = ch.chomp
|
|
37
|
-
case (ch.empty? ?
|
|
38
|
+
case (ch.empty? ? accept : ch)
|
|
38
39
|
when agree
|
|
39
40
|
return true
|
|
40
41
|
when cancel
|
|
@@ -80,9 +81,9 @@ module Squared
|
|
|
80
81
|
end}] "
|
|
81
82
|
end
|
|
82
83
|
end
|
|
83
|
-
between = ->(s) { s.match?(/^\d+$/) && s.to_i.between?(min, max
|
|
84
|
+
between = ->(s) { s.match?(/^\d+$/) && s.to_i.between?(min, max) }
|
|
84
85
|
Timeout.timeout(timeout) do
|
|
85
|
-
while (ch =
|
|
86
|
+
while (ch = Prompt.reline.readline(msg))
|
|
86
87
|
ch.strip!
|
|
87
88
|
unless ch.empty?
|
|
88
89
|
if multiple
|
|
@@ -128,14 +129,14 @@ module Squared
|
|
|
128
129
|
end
|
|
129
130
|
|
|
130
131
|
def readline(msg, history = false, force: nil, multiline: nil, &blk)
|
|
131
|
-
multiline = nil unless
|
|
132
|
+
multiline = nil unless Prompt.reline.respond_to?(:readmultiline)
|
|
132
133
|
read = lambda do
|
|
133
134
|
if !multiline
|
|
134
|
-
|
|
135
|
+
Prompt.reline.readline(msg, history)
|
|
135
136
|
elsif block_given?
|
|
136
|
-
|
|
137
|
+
Prompt.reline.readmultiline(msg, history, &blk)
|
|
137
138
|
else
|
|
138
|
-
|
|
139
|
+
Prompt.reline.readmultiline(msg, history) do |line|
|
|
139
140
|
next if line.strip.empty?
|
|
140
141
|
|
|
141
142
|
Array(multiline).any? { |val| line.split.last.end_with?(val.to_s) }
|
data/lib/squared/common/shell.rb
CHANGED
|
@@ -18,14 +18,14 @@ module Squared
|
|
|
18
18
|
|
|
19
19
|
def shell_escape(val, quote: false, option: false, force: false, double: false, override: false)
|
|
20
20
|
val = val.to_s
|
|
21
|
-
if (
|
|
22
|
-
if (
|
|
23
|
-
double =
|
|
21
|
+
if (md = /\A(--?)([^=\s]+)((=|\s+)(["'])?(?(5)(.*)\5|(.*)))?\z/m.match(val))
|
|
22
|
+
if (q = md[2].match(QUOTE_VALUE))
|
|
23
|
+
double = q[1] == '"'
|
|
24
24
|
override = true
|
|
25
|
-
elsif !
|
|
25
|
+
elsif !md[3] || md[6]
|
|
26
26
|
return val
|
|
27
27
|
end
|
|
28
|
-
ch =
|
|
28
|
+
ch = md[7]
|
|
29
29
|
opt = if ch.start_with?('"', "'")
|
|
30
30
|
"#{ch}#{ch[0]}"
|
|
31
31
|
elsif ch.end_with?('"', "'")
|
|
@@ -35,7 +35,7 @@ module Squared
|
|
|
35
35
|
|
|
36
36
|
ch
|
|
37
37
|
end
|
|
38
|
-
|
|
38
|
+
md[1] + (q ? q[2] : md[2]) + md[4] + shell_quote(opt, force: force, double: double, override: override)
|
|
39
39
|
elsif option && val =~ /\A(-{0,2}[^=\s-][^=\s]*)=(.+)\z/m
|
|
40
40
|
return val if $2.match?(QUOTE_VALUE)
|
|
41
41
|
|
|
@@ -61,7 +61,7 @@ module Squared
|
|
|
61
61
|
if val =~ QUOTE_VALUE
|
|
62
62
|
if pass == '"' || pass == "'"
|
|
63
63
|
return val if pass == $1
|
|
64
|
-
elsif pass || ($1 == '"' && Rake::Win32.windows? && val.match?(/(
|
|
64
|
+
elsif pass || ($1 == '"' && Rake::Win32.windows? && val.match?(/([#{File::SEPARATOR} ]|\\")/o))
|
|
65
65
|
return val
|
|
66
66
|
end
|
|
67
67
|
case preserve
|
|
@@ -162,11 +162,11 @@ module Squared
|
|
|
162
162
|
end
|
|
163
163
|
|
|
164
164
|
def shell_bin(name, env: true)
|
|
165
|
-
|
|
165
|
+
path = defined?(PATH) ? PATH : {}
|
|
166
166
|
key = name.to_s.upcase
|
|
167
167
|
key = File.basename(key, '.*') if Rake::Win32.windows?
|
|
168
|
-
shell_quote((env && ENV["PATH_#{key}"]) ||
|
|
169
|
-
|
|
168
|
+
shell_quote((env && ENV["PATH_#{key}"]) || path[key] || path[key.to_sym] || path[key = key.downcase] ||
|
|
169
|
+
path[key.to_sym] || name, option: false, force: false, double: true)
|
|
170
170
|
end
|
|
171
171
|
|
|
172
172
|
def line_width(lines)
|
|
@@ -175,7 +175,7 @@ module Squared
|
|
|
175
175
|
|
|
176
176
|
def fill_option(val, **kwargs)
|
|
177
177
|
return val unless val.is_a?(::String)
|
|
178
|
-
return "-#{val}" if val.match?(/\A(
|
|
178
|
+
return "-#{val}" if val.match?(/\A([a-z]\d*|\d)\z/i)
|
|
179
179
|
|
|
180
180
|
shell_escape(val.start_with?('-') ? val : "--#{val}", **kwargs)
|
|
181
181
|
end
|