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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2bb5aca470bcf626ad570091a65dd7b15b73a223bebc1ea8d7c3933a90e982e
4
- data.tar.gz: fead2fa875f2e2fd0364a1aeaa68de54eeb9ab8d49b2d194c500e59565779585
3
+ metadata.gz: 7efac5d3b9601cc72a98fe9efdcf0301828fe74cc0f1986c8edebf69245ce129
4
+ data.tar.gz: e9085acb97d10da319a190eb5c7ae52d2a506c859d474cbd3be06f7ae5d2be61
5
5
  SHA512:
6
- metadata.gz: ac4dd808c610897009c8e1c57da1c4b33c9edae1268976cd2771d2aa39e6e1f6b0b2541c0e5e5bca8ac02866a2ec464adf2aa84d67309b5f9c05e5c91fb6fb86
7
- data.tar.gz: 12a3dd18c7725d1da21bc74150b9caf2fe572b1a1cb6780228d76afdb71844b6be9b4e3220f79e543f44b6583374527ae5ad00ccb832b93e7327104973c86ae2
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
+ [![Gem Version](https://img.shields.io/gem/v/rubocop-style-compact_nesting.svg)](https://rubygems.org/gems/rubocop-style-compact_nesting)
4
+ [![CI](https://github.com/ramongr/rubocop-style-compact_nesting/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/ramongr/rubocop-style-compact_nesting/actions/workflows/ci.yml)
5
+ [![Downloads](https://img.shields.io/gem/dt/rubocop-style-compact_nesting.svg)](https://rubygems.org/gems/rubocop-style-compact_nesting)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
@@ -3,7 +3,7 @@
3
3
  module RuboCop
4
4
  module Style
5
5
  module CompactNesting
6
- VERSION = '0.1.1'
6
+ VERSION = '0.1.2'
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-style-compact_nesting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Rodrigues