squared 0.6.13 → 0.7.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 +69 -85
- data/README.md +242 -204
- data/lib/squared/common/format.rb +7 -10
- data/lib/squared/common/prompt.rb +23 -24
- data/lib/squared/common/shell.rb +21 -22
- data/lib/squared/common/system.rb +29 -21
- data/lib/squared/common/utils.rb +43 -54
- data/lib/squared/config.rb +17 -16
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +292 -180
- data/lib/squared/workspace/project/base.rb +559 -467
- data/lib/squared/workspace/project/docker.rb +166 -159
- data/lib/squared/workspace/project/git.rb +202 -168
- data/lib/squared/workspace/project/node.rb +115 -127
- data/lib/squared/workspace/project/python.rb +248 -160
- data/lib/squared/workspace/project/ruby.rb +403 -292
- data/lib/squared/workspace/project/support/class.rb +13 -7
- data/lib/squared/workspace/project/support/optionpartition.rb +70 -55
- data/lib/squared/workspace/project/support/utils.rb +68 -0
- data/lib/squared/workspace/project.rb +0 -7
- data/lib/squared/workspace/repo.rb +234 -169
- data/lib/squared/workspace/series.rb +91 -86
- data/lib/squared/workspace/support/base.rb +15 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 77cd278e7e9855e6601d497f876db37b4e118e8b13af1ef2535eff1ef5799f84
|
|
4
|
+
data.tar.gz: e5ef173753eff1f9de0a31f0a0db590ec45f8c0d6e1d0b79f7168160c8b03204
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 73c1cb07ee0f10476bd47493455231341bd4a3e42107e74c5e16123ddf99e832cc2c96b870615c0ff5a632a1de4ac9176a9d8cb0b1be460018699140f1c15b48
|
|
7
|
+
data.tar.gz: 365c543051f2a2fc01f445c3e3f3f8b2162e6d0ad0663b91f0928667504193511f59e55683d1b832f56e82d20ef2adc7033673d888a366ab01ed12256504af33
|
data/CHANGELOG.md
CHANGED
|
@@ -1,84 +1,77 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
3
|
+
## [0.7.0] - 2025-01-07
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
- Ruby command version did not abort asdf "Not installed" error.
|
|
36
|
-
- Git command pull action all did not pass option flags to branches.
|
|
37
|
-
- Python command exec did not activate virtual environment.
|
|
38
|
-
- Docker command bake did not reinsert failed check for context directory.
|
|
39
|
-
- Common method shell_quote argument preserve did not bypass requoting.
|
|
40
|
-
|
|
41
|
-
## [0.6.11] - 2026-03-11
|
|
42
|
-
|
|
43
|
-
### Changed
|
|
44
|
-
|
|
45
|
-
- Git internal data calls do not write to logs.
|
|
46
|
-
|
|
47
|
-
## [0.5.22] - 2026-03-11
|
|
48
|
-
|
|
49
|
-
### Fixed
|
|
50
|
-
|
|
51
|
-
- Project base run command was not covered due to lack of type checking.
|
|
52
|
-
|
|
53
|
-
## [0.4.36] - 2026-03-11
|
|
54
|
-
|
|
55
|
-
### Added
|
|
56
|
-
|
|
57
|
-
- Python venv initialization installs setuptools when detected.
|
|
58
|
-
- Node task depend adds prod option flags when NODE_ENV=production.
|
|
59
|
-
|
|
60
|
-
### Fixed
|
|
61
|
-
|
|
62
|
-
- OptionPartition methods with escape parameter were reordered.
|
|
63
|
-
- OptionPartition methods with quote parameter were revised.
|
|
64
|
-
|
|
65
|
-
## [0.6.10] - 2025-02-23
|
|
66
|
-
|
|
67
|
-
### Added
|
|
68
|
-
|
|
69
|
-
- Docker command image action [ls|rm|tag|save] can be filtered.
|
|
70
|
-
- Pip command options were updated to 26.1.
|
|
7
|
+
- Batch phony tasks without a defined predicate method can be created.
|
|
8
|
+
- Gem command options were updated to 4.0.
|
|
9
|
+
- Bundler command options were updated to 4.0.
|
|
10
|
+
- Python build backend using Meson was implemented.
|
|
11
|
+
- Repo can run doc task when doing a global build.
|
|
12
|
+
- Repo can exclude projects by ref or group when doing a global build.
|
|
13
|
+
- Repo supports creating tasks for multiple named configurations.
|
|
14
|
+
- Git command rev action branch was implemented.
|
|
15
|
+
- Project base asdf command env was implemented.
|
|
16
|
+
- Project task depend can update dependencies globally using UPDATE.
|
|
17
|
+
- Git command sparse-checkout was implemented.
|
|
18
|
+
- Python projects using virtualenv is supported.
|
|
19
|
+
- Python virtual environment installs build backend when specified.
|
|
20
|
+
- Python attributes [project|version] are extracted from pyproject.toml.
|
|
21
|
+
- Docker command image action pull was implemented.
|
|
22
|
+
- Python command install action poetry was implemented.
|
|
23
|
+
- Repo can run [lint|test] task when doing a global build.
|
|
24
|
+
- RubyGems and Bundler is compatible with Ruby 3.0 and 4.0.
|
|
25
|
+
- Node command nvm with argument version is interactive.
|
|
26
|
+
- Project event "on" called with [first|last] creates error bubble session.
|
|
27
|
+
- Project run commands support global and individual operation timeouts.
|
|
28
|
+
- Workspace projects can treat warnings as errors through Application exception.
|
|
29
|
+
- Ruby command version and gems autodetect support using program mise.
|
|
30
|
+
- Application method with using pass can accept a nested array of arguments.
|
|
31
|
+
- Application class supports extensions used during build finalization.
|
|
32
|
+
- Docker command bake action compose to build with defaults was implemented.
|
|
33
|
+
- Program asdf legacy global installations using ASDF_DIR is supported.
|
|
71
34
|
|
|
72
35
|
### Changed
|
|
73
36
|
|
|
74
|
-
- Ruby
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
37
|
+
- Ruby application method does not process flags directly.
|
|
38
|
+
- Project command banner does not display quotes for simple word strings.
|
|
39
|
+
- Workspace project implementation Series no longer stores tasks globally.
|
|
40
|
+
- Different workspaces do not iterate through unused Project classes.
|
|
41
|
+
- Application static attr_banner can only be accessed as a reader.
|
|
42
|
+
- Project private method arguments being misused is no longer supported.
|
|
43
|
+
- Protected methods are used instead of instance_variable_get.
|
|
44
|
+
- Project class constructor arguments without a default value use kwargs.
|
|
45
|
+
- Case equality uses singleton object and not class name.
|
|
46
|
+
- Python command install action [user|force] were replaced with requirement.
|
|
47
|
+
- Repo workspace selection does not include disabled refs or groups.
|
|
48
|
+
- Repo tasks [init|all] uses bit values with REPO_STAGE.
|
|
49
|
+
- Project base [setter|getter] global was converted into a [number|boolean].
|
|
50
|
+
- Project base initialize methods were made private.
|
|
51
|
+
- Common utils methods [env_value|env_yield] were made private.
|
|
52
|
+
- Application attribute home was converted into a setter and reader.
|
|
53
|
+
- Program application binary path aliases can be in lowercase.
|
|
54
|
+
- JoinSet when pushing a nil object is rejected.
|
|
55
|
+
- OptionPartition static method append does not return rejected arguments.
|
|
56
|
+
- Docker command bake action build does not merge compose configuration files.
|
|
57
|
+
- Application banner attributes are collected internally.
|
|
58
|
+
- Application project classes can only be injected using static methods.
|
|
59
|
+
- Tasks can only be excluded through Appliction build instance method.
|
|
60
|
+
- Project base utility methods were relocated to Support namespace.
|
|
61
|
+
- Ruby class private method run_rb was removed.
|
|
62
|
+
- Application attribute exception accept Logger levels to route errors.
|
|
63
|
+
- Ruby command irb always includes local development require paths.
|
|
64
|
+
- Bundler tasks are hidden when package is not installed.
|
|
65
|
+
- Application method stage with attribute closed provides build stage progress.
|
|
66
|
+
- Application method with renamed pass to hide due to conflict with Project.
|
|
67
|
+
- Node task depend using Yarn no longer sets option ignore-engines by default.
|
|
68
|
+
- Project base private instance variable events was relocated.
|
|
69
|
+
- Docker command compose action publish was implemented.
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
|
|
73
|
+
- Project base method command_args did not append prompted value.
|
|
74
|
+
- Bundler command exec did not use correct delegate for delete.
|
|
82
75
|
|
|
83
76
|
## [0.6.9] - 2025-01-07
|
|
84
77
|
|
|
@@ -105,7 +98,6 @@
|
|
|
105
98
|
### Fixed
|
|
106
99
|
|
|
107
100
|
- Git commands [rebase|clone] did not forward sync flag.
|
|
108
|
-
- Pip command install carelessly used an undefined method.
|
|
109
101
|
- Common prompt method readline with multiline did not permit empty lines.
|
|
110
102
|
- Application method with using pass did not ignore exceptions.
|
|
111
103
|
- Git method source did not check command object for supported method.
|
|
@@ -123,7 +115,6 @@
|
|
|
123
115
|
### Fixed
|
|
124
116
|
|
|
125
117
|
- Gem command outdated did not set bindir with update command.
|
|
126
|
-
- Bundler ultimately never ended up learning how to spell JIT.
|
|
127
118
|
|
|
128
119
|
## [0.5.20] - 2025-12-26
|
|
129
120
|
|
|
@@ -1648,7 +1639,7 @@
|
|
|
1648
1639
|
- Rake did not set original rakefile when calling itself.
|
|
1649
1640
|
- Extended tasks were not associated to their supporting class method.
|
|
1650
1641
|
|
|
1651
|
-
## [0.1.0] - 2024-12-
|
|
1642
|
+
## [0.1.0] - 2024-12-7
|
|
1652
1643
|
|
|
1653
1644
|
### Added
|
|
1654
1645
|
|
|
@@ -1669,16 +1660,13 @@
|
|
|
1669
1660
|
- Git pull did not display colors for diff bar chart.
|
|
1670
1661
|
- Git commit did not fetch latest refs before submitting.
|
|
1671
1662
|
|
|
1672
|
-
## [0.0.12] - 2024-12-
|
|
1663
|
+
## [0.0.12] - 2024-12-1
|
|
1673
1664
|
|
|
1674
1665
|
### Added
|
|
1675
1666
|
|
|
1676
1667
|
- Changelog was created.
|
|
1677
1668
|
|
|
1678
|
-
[0.
|
|
1679
|
-
[0.6.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.12
|
|
1680
|
-
[0.6.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.11
|
|
1681
|
-
[0.6.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.10
|
|
1669
|
+
[0.7.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.7.0
|
|
1682
1670
|
[0.6.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.9
|
|
1683
1671
|
[0.6.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.8
|
|
1684
1672
|
[0.6.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.7
|
|
@@ -1689,8 +1677,6 @@
|
|
|
1689
1677
|
[0.6.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.2
|
|
1690
1678
|
[0.6.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.1
|
|
1691
1679
|
[0.6.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.6.0
|
|
1692
|
-
[0.5.23]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.23
|
|
1693
|
-
[0.5.22]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.22
|
|
1694
1680
|
[0.5.21]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.21
|
|
1695
1681
|
[0.5.20]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.20
|
|
1696
1682
|
[0.5.19]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.19
|
|
@@ -1713,8 +1699,6 @@
|
|
|
1713
1699
|
[0.5.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.2-ruby
|
|
1714
1700
|
[0.5.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.1-ruby
|
|
1715
1701
|
[0.5.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.0-ruby
|
|
1716
|
-
[0.4.37]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.37
|
|
1717
|
-
[0.4.36]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.36
|
|
1718
1702
|
[0.4.35]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.35
|
|
1719
1703
|
[0.4.34]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.34
|
|
1720
1704
|
[0.4.33]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.33
|