rubocop-style-compact_nesting 0.1.1 → 0.1.2
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 +14 -0
- data/README.md +5 -0
- data/lib/rubocop/style/compact_nesting/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7efac5d3b9601cc72a98fe9efdcf0301828fe74cc0f1986c8edebf69245ce129
|
|
4
|
+
data.tar.gz: e9085acb97d10da319a190eb5c7ae52d2a506c859d474cbd3be06f7ae5d2be61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5f3be1af520eba26f0d8770d7e71317b8caf3cdcfc3bf27b772621468a6e407d6b4a8c80eb0a7949275ab7ebb6c65d82badf1522eb400f4a54ed02ae4d8fa72
|
|
7
|
+
data.tar.gz: db5c83002a520a8bcc007fbee25e9fdf9ec4a0910fffdd71b1a8423b112f8d88c782ed7cda2e22a4763db809deecc05671d521ba4fc243981d321b9b2a47ddc1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.2] - 2026-06-01
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- README now ships with gem version, CI status, downloads, and license
|
|
7
|
+
badges.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Regression test pinning the plugin's default config behaviour.
|
|
11
|
+
|
|
12
|
+
### Internal
|
|
13
|
+
- Ruby 4.0 (preview) added to the CI matrix as a non-blocking job.
|
|
14
|
+
- `CONTRIBUTING.md` documenting the dev loop, PR flow, and tag-driven
|
|
15
|
+
release process.
|
|
16
|
+
|
|
3
17
|
## [0.1.1] - 2026-06-01
|
|
4
18
|
|
|
5
19
|
### Changed
|
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# rubocop-style-compact_nesting
|
|
2
2
|
|
|
3
|
+
[](https://rubygems.org/gems/rubocop-style-compact_nesting)
|
|
4
|
+
[](https://github.com/ramongr/rubocop-style-compact_nesting/actions/workflows/ci.yml)
|
|
5
|
+
[](https://rubygems.org/gems/rubocop-style-compact_nesting)
|
|
6
|
+
[](LICENSE.txt)
|
|
7
|
+
|
|
3
8
|
A RuboCop plugin that enforces a hybrid module/class nesting style:
|
|
4
9
|
|
|
5
10
|
- All namespace segments are **collapsed onto a single `module` line** using
|