foobara-rubocop-rules 0.0.5 → 0.0.7

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: c4df226d6159614df2b27a06c7ee3e8aa65bf673448eac2627a2303d0cee2392
4
- data.tar.gz: 07a72e576db829019a13d1bc9520306b9528f93d894d9f5e2a67f63849159c91
3
+ metadata.gz: b57419a52ae4a24d576ed05027a204bba47364444d9000b4545125f3f177a35b
4
+ data.tar.gz: 3b92c500a99e8a5d64a0b4aa6ce162f0e59cb8e0a84fc6f985e707406ad181bc
5
5
  SHA512:
6
- metadata.gz: 752b29e6793cff088cedbe36e4d41751978663483ac0a551f5482267fe4c02b4fbe66cbbaf82fac90af593302091e0039ab6bae62f47c2065351d394f42c7b29
7
- data.tar.gz: 2e8cb86634f9a913b3daeb859e83a43cb4c8f988d79d80917f2f743500725393e6fb13f2b79f1bcc6044100cbb99daaad49a25d6a69a6a48295c25972b9b1d99
6
+ metadata.gz: 27fba5486bc26b0615a471f00fbf91c1522530a66cc578d2f29b814e4c53e7ada3ef8985a007fba9e256d5d3cbd112e5dee27457a86b825468fd48ddc489f009
7
+ data.tar.gz: 00ec41234bdd0d74ae014c5b5e80633cf567c680c295a8b008dd4486a697624894f559eaf48224a0d3b3035499fa8a1cfe3b2abdaef1dfd06ed7583949a27d23
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.0.7] - 2025-02-16
2
+
3
+ - Use plugins: instead of require: where possible to eliminate warnings
4
+ - Bump to Ruby 3.4.2
5
+
6
+ ## [0.0.6] - 2025-01-07
7
+
8
+ - Bump Ruby to 3.4.1
9
+
1
10
  ## [0.0.5] - 2024-11-30
2
11
 
3
12
  * Turn off SafeNavigationChainLength
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,5 +1,9 @@
1
1
  module Foobara
2
2
  module RubocopRules
3
- VERSION = "0.0.5".freeze
3
+ VERSION = "0.0.7".freeze
4
+
5
+ local_ruby_version = File.read("#{__dir__}/.ruby-version").chomp
6
+ local_ruby_version_minor = local_ruby_version[/\A(\d+\.\d+)\.\d+\z/, 1]
7
+ MINIMUM_RUBY_VERSION = ">= #{local_ruby_version_minor}.0".freeze
4
8
  end
5
9
  end
metadata CHANGED
@@ -1,14 +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.5
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-30 00:00:00.000000000 Z
10
+ date: 2025-02-16 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rubocop
@@ -38,7 +37,6 @@ dependencies:
38
37
  - - ">="
39
38
  - !ruby/object:Gem::Version
40
39
  version: '0'
41
- description:
42
40
  email:
43
41
  - azimux@gmail.com
44
42
  executables: []
@@ -68,7 +66,6 @@ metadata:
68
66
  source_code_uri: https://github.com/foobara/rubocop-rules
69
67
  changelog_uri: https://github.com/foobara/rubocop-rules/blob/main/CHANGELOG.md
70
68
  rubygems_mfa_required: 'true'
71
- post_install_message:
72
69
  rdoc_options: []
73
70
  require_paths:
74
71
  - lib
@@ -76,15 +73,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
73
  requirements:
77
74
  - - ">="
78
75
  - !ruby/object:Gem::Version
79
- version: '3.2'
76
+ version: 3.4.0
80
77
  required_rubygems_version: !ruby/object:Gem::Requirement
81
78
  requirements:
82
79
  - - ">="
83
80
  - !ruby/object:Gem::Version
84
81
  version: '0'
85
82
  requirements: []
86
- rubygems_version: 3.5.23
87
- signing_key:
83
+ rubygems_version: 3.6.2
88
84
  specification_version: 4
89
85
  summary: Common rubocop rules used in various foobara projects.
90
86
  test_files: []