sequra-style 1.15.0 → 1.16.0

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: 7c280cada803065823f62008f14c7b9b1e6dab10dcf40536d7bf5785fd9fb5fc
4
- data.tar.gz: 337cb5e29a589dee29075f2138a61d3c5e268b3c1e75e59d39fb53bdf94a100a
3
+ metadata.gz: a71149d266a3203c44ae7001af44810e2bce7c2d9ab32ec4fc7457a1cee5b7bf
4
+ data.tar.gz: 68420dfeac0bb98f32b021b6571b801f0f5f62ee70cd88e8f984a5356079039b
5
5
  SHA512:
6
- metadata.gz: 4aa25b39900724c7b9d15211a330c55555e10998ca3b5f0229759179b3329fc5afcb8bc1e39953226de8e9281a9573c9d20ea37ab25a857439f74a5fad222af9
7
- data.tar.gz: 9f547e557e2d3db25be396746468b13ef16fe2385bd64e02faf9b852c75a97bcec49d516e141e44289a0db3f01092fdd333f83d25bb618216d1d63394a9e7965
6
+ metadata.gz: 0e4b82aa044144103b651085477c4965e1c69ffe4fc7b550a5141400b0744ba852dc99b07f8b17a3fb3543e6afcfcbe87ebfc36a9a8a82e02bc7f5b841fd422e
7
+ data.tar.gz: aed0d7b670c14f6efde676abe0e202a05542ee8bf195053e1abd761ffd10ea6aeda7a3f331be7d70e58732bf8e2cafc170a6cd39b0df43df73bed31a7098212a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.16.0](https://github.com/sequra/sequra-style/compare/v1.15.0...v1.16.0) (2026-05-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * [COR-1993] Enable Style/RedundantConstantBase cop ([#74](https://github.com/sequra/sequra-style/issues/74)) ([33396f6](https://github.com/sequra/sequra-style/commit/33396f673cf7bd02c70e67e28aefd4f3b5bb2996))
9
+
3
10
  ## [1.15.0](https://github.com/sequra/sequra-style/compare/v1.14.0...v1.15.0) (2026-05-18)
4
11
 
5
12
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sequra-style (1.15.0)
4
+ sequra-style (1.16.0)
5
5
  rubocop (~> 1.75)
6
6
  rubocop-performance (~> 1.25)
7
7
  rubocop-rails (~> 2.31)
data/default.yml CHANGED
@@ -736,6 +736,11 @@ Style/PreferredHashMethods:
736
736
  Style/RaiseArgs:
737
737
  Enabled: true
738
738
 
739
+ # Don't prefix top-level constants with `::` when bare resolution is unambiguous
740
+ # https://docs.rubocop.org/rubocop/cops_style.html#styleredundantconstantbase
741
+ Style/RedundantConstantBase:
742
+ Enabled: true
743
+
739
744
  # Avoid explicit return where not required
740
745
  # https://rubystyle.guide/#no-explicit-return
741
746
  Style/RedundantReturn:
@@ -1,5 +1,5 @@
1
1
  module Sequra
2
2
  module Style
3
- VERSION = "1.15.0"
3
+ VERSION = "1.16.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequra-style
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.15.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sequra engineering
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-05-18 00:00:00.000000000 Z
11
+ date: 2026-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop