standard 1.51.0 → 1.51.1

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: aac91abbf5fa593278b6e5d092cca49ff406d646bf9b52a81bdac4f3fcf2e6c6
4
- data.tar.gz: 41126e18ae9a72a6c386d5b61f1a07659ed9b576d03b8850d57569d7aee6f8fe
3
+ metadata.gz: 07c40762e88776ff266e671bb0e0f9985b2017e91b99ff1593c24b7909663325
4
+ data.tar.gz: 65eebc32148755c1fa6fd98bfd24219f97f30466c8bff2edd360637d789c4118
5
5
  SHA512:
6
- metadata.gz: d22445ecc503a0ebd9f4556413e6fc791551527ddf6b5fbffc64a39b89bc7c58758162374b06fca78a36bb09c32b1bce2523e4f5576f2cb34a299f46259258ad
7
- data.tar.gz: fc7c20886599877489dc674e4ca773ecb71daa2d98f7d077d6da7113f8f8fc7832d9d7a84a4ad9411943af92a85729656d1f2182fbafc0c76c15266148eefc45
6
+ metadata.gz: 77d7ef4b4a63e4bd9c5fcc834a669db73d83299ae398e44424d5634b2507ed86910e4464ef487a8aaa6fe5aca1a73c7ba381ad9639532ebb9f65c4a53fc97873
7
+ data.tar.gz: '0048c371fc119bc358eb9603e6ec41fbdc136a7d17776f4a3ffcfc8144d8c125cb6e65de77c996b9638321392cbed1d12f12b47f8e405011bd3593db07266228'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.51.1
4
+
5
+ * Fixes Layout/EmptyLineAfterGuardClause back to false after [#750](https://github.com/standardrb/standard/issues/750)
6
+
3
7
  ## 1.51.0
4
8
 
5
9
  * Updates rubocop to [1.81.2](https://github.com/rubocop/rubocop/tree/v1.81.2)
data/Gemfile CHANGED
@@ -3,15 +3,14 @@ source "https://rubygems.org"
3
3
  gemspec
4
4
 
5
5
  gem "bundler"
6
- gem "minitest", "~> 5.25"
7
- gem "rake", "~> 13.3"
8
6
  gem "m"
7
+ gem "minitest"
9
8
  gem "mutex_m"
9
+ gem "rake"
10
10
  gem "ruby-lsp"
11
+ gem "simplecov"
11
12
 
12
13
  # You may want to run these off path locally:
13
14
  # gem "lint_roller", path: "../lint_roller"
14
15
  # gem "standard-custom", path: "../standard-custom"
15
16
  # gem "standard-performance", path: "../standard-performance"
16
-
17
- gem "simplecov"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- standard (1.51.0)
4
+ standard (1.51.1)
5
5
  language_server-protocol (~> 3.17.0.2)
6
6
  lint_roller (~> 1.0)
7
7
  rubocop (~> 1.80.2)
@@ -80,9 +80,9 @@ PLATFORMS
80
80
  DEPENDENCIES
81
81
  bundler
82
82
  m
83
- minitest (~> 5.25)
83
+ minitest
84
84
  mutex_m
85
- rake (~> 13.3)
85
+ rake
86
86
  ruby-lsp
87
87
  simplecov
88
88
  standard!
data/config/base.yml CHANGED
@@ -125,7 +125,7 @@ Layout/EmptyComment:
125
125
  AllowMarginComment: true
126
126
 
127
127
  Layout/EmptyLineAfterGuardClause:
128
- Enabled: true
128
+ Enabled: false
129
129
 
130
130
  Layout/EmptyLineAfterMagicComment:
131
131
  Enabled: true
@@ -1,3 +1,3 @@
1
1
  module Standard
2
- VERSION = Gem::Version.new("1.51.0")
2
+ VERSION = Gem::Version.new("1.51.1")
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.51.0
4
+ version: 1.51.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-09-09 00:00:00.000000000 Z
10
+ date: 2025-09-12 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop