squared 0.5.4 → 0.5.6
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 +149 -63
- data/README.md +662 -1273
- data/lib/squared/common/base.rb +1 -1
- data/lib/squared/common/format.rb +7 -4
- data/lib/squared/common/prompt.rb +1 -1
- data/lib/squared/common/shell.rb +7 -2
- data/lib/squared/common/system.rb +1 -1
- data/lib/squared/config.rb +8 -8
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +29 -9
- data/lib/squared/workspace/project/base.rb +104 -27
- data/lib/squared/workspace/project/docker.rb +109 -68
- data/lib/squared/workspace/project/git.rb +156 -127
- data/lib/squared/workspace/project/node.rb +18 -19
- data/lib/squared/workspace/project/python.rb +36 -19
- data/lib/squared/workspace/project/ruby.rb +100 -55
- data/lib/squared/workspace/project/support/class.rb +81 -4
- data/lib/squared/workspace/repo.rb +72 -36
- data/squared.gemspec +2 -2
- metadata +5 -6
- data/README.ruby.md +0 -728
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40b39041151c559d38910aa11e68b6aa9cc28d1bb67176559193da4005cdda15
|
4
|
+
data.tar.gz: cc6753a83f0390110e723cf92830cbb4c441d0e0c794d837fe5c20956cab713a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36c3de2c6763c0d66b28a353cf36fca2de5eb5fe90de5eee457bf1802d23b18db8ac4a2e78d01799a993cf370cb96b068f2d4acda4cc049c1e70f2f5cbcfb004
|
7
|
+
data.tar.gz: 0e8d0aee698b441c8c4b3eec2a79cb52cf6e22e0a4aad88567defd0d8587dc16f678fdde318048220edb33ef5aa80ff7f2b253ede61fa3a03aac71849ba8179e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,86 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.5.6] - 2025-08-30
|
4
|
+
|
5
|
+
### Added
|
6
|
+
|
7
|
+
- Docker command compose parameter services is interactive.
|
8
|
+
- Workspace with public method has conditional pass parameter.
|
9
|
+
|
10
|
+
## [0.4.19] - 2025-08-30
|
11
|
+
|
12
|
+
### Added
|
13
|
+
|
14
|
+
- Docker command options were updated to 28.3.
|
15
|
+
- Docker command compose action down was implemented.
|
16
|
+
- Docker containers conflicting with options can be prefixed with colon.
|
17
|
+
- Git command stash action push option message is interactive.
|
18
|
+
- Repo commands init and sync inherit any positional options.
|
19
|
+
|
20
|
+
### Fixed
|
21
|
+
|
22
|
+
- Docker did not ignore pre-defined file with COMPOSE_FILE.
|
23
|
+
- Docker did not support multiple config files.
|
24
|
+
- Repo did not transfer arguments to supplement tasks.
|
25
|
+
- Node public method version caused a recursive loop.
|
26
|
+
- Node command bump action minor without major was revised.
|
27
|
+
|
28
|
+
## [0.5.5] - 2025-08-23
|
29
|
+
|
30
|
+
### Added
|
31
|
+
|
32
|
+
- Workspace styles can be loaded from a JSON file.
|
33
|
+
- Git command stash action all was implemented.
|
34
|
+
- Python command publish supports uploading to testpypi.
|
35
|
+
- Project base wrapper for program asdf was implemented.
|
36
|
+
|
37
|
+
### Changed
|
38
|
+
|
39
|
+
- Node private method read_scripts was made public as scripts.
|
40
|
+
|
41
|
+
### Fixed
|
42
|
+
|
43
|
+
- Git command commit did not check for pushes with nothing staged.
|
44
|
+
- Git command submodule did not include name of command.
|
45
|
+
- Shellwords method shellsplit was missing from String class.
|
46
|
+
|
47
|
+
## [0.4.18] - 2025-08-23
|
48
|
+
|
49
|
+
### Added
|
50
|
+
|
51
|
+
- Repo command init can specify groups to pull from manifest.
|
52
|
+
- Repo command init can specify submodules to fetch.
|
53
|
+
- Ruby gem specification is auto-detected when not specified.
|
54
|
+
- Ruby task install:redownload with force deletes Gemfile.lock.
|
55
|
+
|
56
|
+
### Changed
|
57
|
+
|
58
|
+
- Workspace pipe and verbose interprets $DEBUG AND $VERBOSE modes.
|
59
|
+
- Git response status did not check for STDIN stream.
|
60
|
+
- Common format method puts_oe was renamed log_console.
|
61
|
+
- Global task git:all is disabled for single project workspaces.
|
62
|
+
|
63
|
+
## [0.3.14] - 2025-08-23
|
64
|
+
|
65
|
+
### Fixed
|
66
|
+
|
67
|
+
- Gem command exec did not separate command and arguments.
|
68
|
+
|
69
|
+
## [0.2.14] - 2025-08-23
|
70
|
+
|
71
|
+
### Fixed
|
72
|
+
|
73
|
+
- See `0.1.11`.
|
74
|
+
|
75
|
+
## [0.1.11] - 2025-08-23
|
76
|
+
|
77
|
+
### Fixed
|
78
|
+
|
79
|
+
- Node could not compare semantic versions above double digits.
|
80
|
+
- Node command bump did not reset major and minor trailing digits.
|
81
|
+
- Gems with a fourth semver digit was not compared.
|
82
|
+
- Workspace styles did not convert string keys to symbols.
|
83
|
+
|
3
84
|
## [0.5.4] - 2025-08-09
|
4
85
|
|
5
86
|
### Changed
|
@@ -944,66 +1025,71 @@
|
|
944
1025
|
|
945
1026
|
- Changelog was created.
|
946
1027
|
|
947
|
-
[0.5.
|
948
|
-
[0.5.
|
949
|
-
[0.5.
|
950
|
-
[0.5.
|
951
|
-
[0.5.
|
952
|
-
[0.
|
953
|
-
[0.
|
954
|
-
[0.4.
|
955
|
-
[0.4.
|
956
|
-
[0.4.
|
957
|
-
[0.4.
|
958
|
-
[0.4.
|
959
|
-
[0.4.
|
960
|
-
[0.4.
|
961
|
-
[0.4.
|
962
|
-
[0.4.
|
963
|
-
[0.4.
|
964
|
-
[0.4.
|
965
|
-
[0.4.
|
966
|
-
[0.4.
|
967
|
-
[0.4.
|
968
|
-
[0.4.
|
969
|
-
[0.4.
|
970
|
-
[0.
|
971
|
-
[0.
|
972
|
-
[0.3.
|
973
|
-
[0.3.
|
974
|
-
[0.3.
|
975
|
-
[0.3.
|
976
|
-
[0.3.
|
977
|
-
[0.3.
|
978
|
-
[0.3.
|
979
|
-
[0.3.
|
980
|
-
[0.3.
|
981
|
-
[0.3.
|
982
|
-
[0.3.
|
983
|
-
[0.3.
|
984
|
-
[0.2
|
985
|
-
[0.
|
986
|
-
[0.
|
987
|
-
[0.2.
|
988
|
-
[0.2.
|
989
|
-
[0.2.
|
990
|
-
[0.2.
|
991
|
-
[0.2.
|
992
|
-
[0.2.
|
993
|
-
[0.2.
|
994
|
-
[0.2.
|
995
|
-
[0.2.
|
996
|
-
[0.2.
|
997
|
-
[0.2.
|
998
|
-
[0.
|
999
|
-
[0.
|
1000
|
-
[0.1
|
1001
|
-
[0.
|
1002
|
-
[0.1.
|
1003
|
-
[0.1.
|
1004
|
-
[0.1.
|
1005
|
-
[0.1.
|
1006
|
-
[0.1.
|
1007
|
-
[0.1.
|
1008
|
-
[0.1.
|
1009
|
-
[0.
|
1028
|
+
[0.5.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.6
|
1029
|
+
[0.5.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.5
|
1030
|
+
[0.5.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.4-ruby
|
1031
|
+
[0.5.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.3-ruby
|
1032
|
+
[0.5.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.2-ruby
|
1033
|
+
[0.5.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.1-ruby
|
1034
|
+
[0.5.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.5.0-ruby
|
1035
|
+
[0.4.17]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.17-ruby
|
1036
|
+
[0.4.16]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.16-ruby
|
1037
|
+
[0.4.15]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.15-ruby
|
1038
|
+
[0.4.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.14-ruby
|
1039
|
+
[0.4.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.13-ruby
|
1040
|
+
[0.4.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.12-ruby
|
1041
|
+
[0.4.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.11-ruby
|
1042
|
+
[0.4.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.10-ruby
|
1043
|
+
[0.4.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.9-ruby
|
1044
|
+
[0.4.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.8-ruby
|
1045
|
+
[0.4.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.7-ruby
|
1046
|
+
[0.4.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.6-ruby
|
1047
|
+
[0.4.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.5-ruby
|
1048
|
+
[0.4.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.4-ruby
|
1049
|
+
[0.4.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.3-ruby
|
1050
|
+
[0.4.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.2-ruby
|
1051
|
+
[0.4.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.1-ruby
|
1052
|
+
[0.4.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.4.0-ruby
|
1053
|
+
[0.3.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.14
|
1054
|
+
[0.3.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.13-ruby
|
1055
|
+
[0.3.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.12-ruby
|
1056
|
+
[0.3.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.11-ruby
|
1057
|
+
[0.3.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.10-ruby
|
1058
|
+
[0.3.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.9-ruby
|
1059
|
+
[0.3.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.8-ruby
|
1060
|
+
[0.3.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.7-ruby
|
1061
|
+
[0.3.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.6-ruby
|
1062
|
+
[0.3.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.5-ruby
|
1063
|
+
[0.3.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.4-ruby
|
1064
|
+
[0.3.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.3-ruby
|
1065
|
+
[0.3.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.2-ruby
|
1066
|
+
[0.3.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.1-ruby
|
1067
|
+
[0.3.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.3.0-ruby
|
1068
|
+
[0.2.14]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.14
|
1069
|
+
[0.2.13]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.13-ruby
|
1070
|
+
[0.2.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.12-ruby
|
1071
|
+
[0.2.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.11-ruby
|
1072
|
+
[0.2.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.10-ruby
|
1073
|
+
[0.2.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.9-ruby
|
1074
|
+
[0.2.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.8-ruby
|
1075
|
+
[0.2.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.7-ruby
|
1076
|
+
[0.2.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.6-ruby
|
1077
|
+
[0.2.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.5-ruby
|
1078
|
+
[0.2.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.4-ruby
|
1079
|
+
[0.2.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.3-ruby
|
1080
|
+
[0.2.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.2-ruby
|
1081
|
+
[0.2.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.1-ruby
|
1082
|
+
[0.2.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.2.0-ruby
|
1083
|
+
[0.1.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.11
|
1084
|
+
[0.1.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.10-ruby
|
1085
|
+
[0.1.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.9-ruby
|
1086
|
+
[0.1.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.8-ruby
|
1087
|
+
[0.1.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.7-ruby
|
1088
|
+
[0.1.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.6-ruby
|
1089
|
+
[0.1.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.5-ruby
|
1090
|
+
[0.1.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.4-ruby
|
1091
|
+
[0.1.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.3-ruby
|
1092
|
+
[0.1.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.2-ruby
|
1093
|
+
[0.1.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.1-ruby
|
1094
|
+
[0.1.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.0-ruby
|
1095
|
+
[0.0.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.0.12-ruby
|