File tree Expand file tree Collapse file tree 6 files changed +31
-6
lines changed
test/rubocop/socketry/layout Expand file tree Collapse file tree 6 files changed +31
-6
lines changed Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
3+ # Released under the MIT License.
4+ # Copyright, 2025, by Samuel Williams.
5+
6+ # Update the project documentation with the new version number.
7+ #
8+ # @parameter version [String] The new version number.
9+ def after_gem_release_version_increment ( version )
10+ context [ "releases:update" ] . call ( version )
11+ context [ "utopia:project:readme:update" ] . call
12+ end
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3- # Use the covered gem for test coverage reporting:
3+ # Released under the MIT License.
4+ # Copyright, 2025, by Samuel Williams.
5+
46require "covered/sus"
57include Covered ::Sus
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ RuboCop rules for Socketry projects.
66
77## Installation
88
9- ```
10- bundle add rubocop-socketry
11- ```
9+ bundle add rubocop-socketry
1210
1311## Usage
1412
@@ -30,6 +28,10 @@ Layout/ConsistentBlankLineIndentation:
3028 Enabled : true
3129` ` `
3230
31+ ## Releases
32+
33+ There are no documented releases.
34+
3335## Contributing
3436
3537We welcome contributions to this project.
Original file line number Diff line number Diff line change 1+ # Releases
2+
3+ ## Unreleased
4+
5+ - Initial implementaiton of ` Layout/ConsistentBlankLineIndentation ` .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
66 spec . name = "rubocop-socketry"
77 spec . version = RuboCop ::Socketry ::VERSION
88
9- spec . summary = "Personal RuboCop rules for Socketry projects"
9+ spec . summary = "RuboCop rules for Socketry projects"
1010 spec . authors = [ "Samuel Williams" ]
1111 spec . license = "MIT"
1212
@@ -17,6 +17,7 @@ Gem::Specification.new do |spec|
1717
1818 spec . metadata = {
1919 "default_lint_roller_plugin" => "RuboCop::Socketry::Plugin" ,
20+ "documentation_uri" => "https://socketry.github.io/rubocop-socketry/" ,
2021 "funding_uri" => "https://github.com/sponsors/ioquatix/" ,
2122 "source_code_uri" => "https://github.com/socketry/rubocop-socketry.git" ,
2223 }
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
3+ # Released under the MIT License.
4+ # Copyright, 2025, by Samuel Williams.
5+
36require "rubocop/socketry/layout/consistent_blank_line_indentation"
47
58describe RuboCop ::Socketry ::Layout ::ConsistentBlankLineIndentation do
362365 expect ( offenses . length ) . to be == 0
363366 end
364367 end
365- end
368+ end
You can’t perform that action at this time.
0 commit comments