foobara-rubocop-rules 0.0.6 → 0.0.8

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: cb78c960278aad11cc83faa3ac71c69d572241a01bf5bce17af62925b2a0c894
4
- data.tar.gz: 3dac19b79a097058b923c6d3f0b0b08b73953e7f7eaecd0d14624f0e5bce97e0
3
+ metadata.gz: 5fc78c5934a13b0d177741cf60619d73c72361f823c3b4d3ce3130f3327f75d0
4
+ data.tar.gz: d2216e30d513857b23a934247ecb0d75f24d24a3ce2da27e8067789e98386423
5
5
  SHA512:
6
- metadata.gz: 7f93b97480dca158e999c2edab52375bc053d15c6d42340ad3e9074ed7a40bfc046c60e9c1595ada417fad4dcb6ee935fd73115f1f7b45de7544bd8a1544cc9c
7
- data.tar.gz: '0284c7dc672335545e31d7d3015b9eedb6f96c2c0a498d6a820b129f4d3dfd6480aa883a6d0bb35a28bc8be713f1266fc7e9e2427342d7b826dbdbbecab08708'
6
+ metadata.gz: bbbed51a34d0aeb69b2bfceec1c1dea2fe4aae24b359c3d46bf3c79bc6be1c897b93e50996fffb6d9f8be7123d6778fabfdbc06ff5b777ec0093cfb9bb0d3f1b
7
+ data.tar.gz: b465a8a59196640dbeb8611fcee17a8be6379d79f299183e878804c7b2cc8972571da386da96433791fc53e66f2a4e4eb2651ef336228f2be98af9b7709fea96
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.0.8] - 2025-03-18
2
+
3
+ - Turn off annoying useless assignment autocorrect
4
+
5
+ ## [0.0.7] - 2025-02-16
6
+
7
+ - Use plugins: instead of require: where possible to eliminate warnings
8
+ - Bump to Ruby 3.4.2
9
+
1
10
  ## [0.0.6] - 2025-01-07
2
11
 
3
12
  - Bump Ruby to 3.4.1
data/rules/lint.yml CHANGED
@@ -14,3 +14,6 @@ Lint/UnusedBlockArgument:
14
14
  Lint/UnusedMethodArgument:
15
15
  AutoCorrect: false
16
16
  AllowUnusedKeywordArguments: true
17
+
18
+ Lint/UselessAssignment:
19
+ AutoCorrect: false
data/rules/rake.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rake
3
3
 
4
4
  Rake/Desc:
data/rules/rspec.yml CHANGED
@@ -1,4 +1,4 @@
1
- require:
1
+ plugins:
2
2
  - rubocop-rspec
3
3
 
4
4
  RSpec/DescribeClass:
data/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "0.0.6".freeze
3
+ VERSION = "0.0.8".freeze
4
4
 
5
5
  local_ruby_version = File.read("#{__dir__}/.ruby-version").chomp
6
6
  local_ruby_version_minor = local_ruby_version[/\A(\d+\.\d+)\.\d+\z/, 1]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-rubocop-rules
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-07 00:00:00.000000000 Z
10
+ date: 2025-03-18 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: rubocop
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  - !ruby/object:Gem::Version
81
81
  version: '0'
82
82
  requirements: []
83
- rubygems_version: 3.6.2
83
+ rubygems_version: 3.6.5
84
84
  specification_version: 4
85
85
  summary: Common rubocop rules used in various foobara projects.
86
86
  test_files: []