squared 0.1.9 → 0.1.11
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 +29 -11
- data/README.md +240 -1286
- data/lib/squared/common/base.rb +1 -1
- data/lib/squared/common/format.rb +2 -2
- data/lib/squared/common/system.rb +1 -1
- data/lib/squared/version.rb +1 -1
- data/lib/squared/workspace/application.rb +19 -15
- data/lib/squared/workspace/project/base.rb +25 -2
- data/lib/squared/workspace/project/node.rb +7 -2
- data/squared.gemspec +3 -3
- metadata +2 -3
- data/README.ruby.md +0 -304
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19e30be152f94f912203fde4ffe55587d547aca44c6bf175bd7f72a6cf20de55
|
4
|
+
data.tar.gz: afd145f2136687b8fbaddd0a072071e98894a1d1f07ec6ed138d5b2f7f385772
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ac09945f3281282943064a45bc41a3bbb58baf9097b2bec59a773de90d2a7c43bc12b5dc4fdcc6ca001f9e0df809e66279b7f5a75ad0c97c776cd7e14812802
|
7
|
+
data.tar.gz: 4d9e097f5c91de347285fb6be9070160d78c74926df80ea2422ca21a0c8649da59c4ad8b2a38a31f6d6ac6fba1008dd3284594765d578802c43fc8ca7c502c91
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [0.1.11] - 2025-08-23
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- Node could not compare semantic versions above double digits.
|
8
|
+
- Node command bump did not reset major and minor trailing digits.
|
9
|
+
- Gems with a fourth semver digit was not compared.
|
10
|
+
- Workspace styles did not convert string keys to symbols.
|
11
|
+
|
12
|
+
## [0.1.10] - 2025-07-16
|
13
|
+
|
14
|
+
### Fixed
|
15
|
+
|
16
|
+
- Module namespaces were not combined in the right order.
|
17
|
+
- Workspace group tasks were not registered.
|
18
|
+
|
3
19
|
## [0.1.9] - 2025-07-05
|
4
20
|
|
5
21
|
### Added
|
@@ -143,14 +159,16 @@
|
|
143
159
|
|
144
160
|
- Changelog was created.
|
145
161
|
|
146
|
-
[0.1.
|
147
|
-
[0.1.
|
148
|
-
[0.1.
|
149
|
-
[0.1.
|
150
|
-
[0.1.
|
151
|
-
[0.1.
|
152
|
-
[0.1.
|
153
|
-
[0.1.
|
154
|
-
[0.1.
|
155
|
-
[0.1.
|
156
|
-
[0.
|
162
|
+
[0.1.11]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.11
|
163
|
+
[0.1.10]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.10-ruby
|
164
|
+
[0.1.9]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.9-ruby
|
165
|
+
[0.1.8]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.8-ruby
|
166
|
+
[0.1.7]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.7-ruby
|
167
|
+
[0.1.6]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.6-ruby
|
168
|
+
[0.1.5]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.5-ruby
|
169
|
+
[0.1.4]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.4-ruby
|
170
|
+
[0.1.3]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.3-ruby
|
171
|
+
[0.1.2]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.2-ruby
|
172
|
+
[0.1.1]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.1-ruby
|
173
|
+
[0.1.0]: https://github.com/anpham6/squared-ruby/releases/tag/v0.1.0-ruby
|
174
|
+
[0.0.12]: https://github.com/anpham6/squared-ruby/releases/tag/v0.0.12-ruby
|