rubocop-mdsol 0.3.0 → 0.4.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: 9ea1fee9117692bb17d96ebfbf59955dbfd329010bf8802a65d3f45b89f238f5
4
- data.tar.gz: caabfe16c4b05113edec4ace5265e7d00dd70c539e66a6a0ef4cf50e0e31bb8d
3
+ metadata.gz: 789ea864d3e9552748c8759c957d64108fedfe2ed33df01c0636627d49c8d8fe
4
+ data.tar.gz: 06b2044e09fe126acbdcc97ba64fcbd662c925c4a9ae1a5d8a2a34a99fc074c0
5
5
  SHA512:
6
- metadata.gz: 1f0ddcd460d42ad310c8dd794eba171fa5895ecd6778def44faf6d4cf9dbe53d2aad2561cb3664deb52d16b08abe0be7881c6a8feb3a8a9b4fe328029bdeac0f
7
- data.tar.gz: ea26682188a2187fcbb4760a6d32d70215f625e5e38c753220ad6daefeea9412c56b79b663dba36c95fb30067dbbcd0b82dc21f5a5b01917698f067e52c4b5bb
6
+ metadata.gz: 44552a0d5e7a7283cfbf6b21b61ff2b3c37757df2dc9fd0b2a50be1aa61917eda6dfc6821d4cd0c6d0f41b17229e952903a5414e0a921fcfca3f564aa9958a0b
7
+ data.tar.gz: 6b6bb81b819565ab061b51d6689aeba69c552506beac76402a7b3f58bcee4ceb2fe1289f9f31a0cadd6b33cf69b200da9d06b2b79f2dc8303a266cdec88c7a8f
data/CHANGELOG.md CHANGED
@@ -1,9 +1,18 @@
1
- # 0.3.0
1
+ # Changelog
2
+
3
+ ## [0.4.0](https://github.com/mdsol/rubocop-mdsol/compare/v0.3.0...v0.4.0) (2026-03-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * Support ruby 3.2, 3.3, 3.4, 4.0, drop support for ruby < 3.2 ([#9](https://github.com/mdsol/rubocop-mdsol/issues/9)) ([65811f9](https://github.com/mdsol/rubocop-mdsol/commit/65811f94667f280b83748dce95ed2432b757c112))
9
+
10
+ ## 0.3.0
2
11
  - Add custom cops: [`mdsol/log_with_data`](lib/rubocop/cop/mdsol/log_with_data.rb) and [`mdsol/unless_not_equal`](lib/rubocop/cop/mdsol/unless_not_equal.rb).
3
12
  - Drop Ruby 2.4, 2.5, and 2.6 support.
4
13
 
5
- # 0.2.0
14
+ ## 0.2.0
6
15
  - Add rubocop-rspec.yml.
7
16
 
8
- # 0.1.0
17
+ ## 0.1.0
9
18
  - Initial release.
data/README.md CHANGED
@@ -8,7 +8,7 @@ This gem provides base RuboCop configuration files for Ruby projects at Medidata
8
8
  Add the following line to your application's Gemfile:
9
9
 
10
10
  ```ruby
11
- gem "rubocop-mdsol", "~> 0.1"
11
+ gem "rubocop-mdsol", "~> 0.3"
12
12
  ```
13
13
 
14
14
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Mdsol
5
- VERSION = "0.3.0"
5
+ VERSION = "0.4.0"
6
6
  end
7
7
  end
@@ -0,0 +1,11 @@
1
+ {
2
+ "release-type": "ruby",
3
+ "include-component-in-tag": false,
4
+ "include-v-in-tag": true,
5
+ "packages": {
6
+ ".": {
7
+ "package-name": "rubocop-mdsol",
8
+ "version-file": "lib/rubocop/mdsol/version.rb"
9
+ }
10
+ }
11
+ }
@@ -19,11 +19,11 @@ Gem::Specification.new do |spec|
19
19
  f.match(/^(\.|bin|spec)/)
20
20
  end
21
21
 
22
- spec.required_ruby_version = ">= 2.7.0"
22
+ spec.required_ruby_version = ">= 3.2.0"
23
23
  spec.require_paths = ["lib"]
24
24
 
25
- spec.add_dependency "rubocop", "~> 1.0"
25
+ spec.add_dependency "rubocop", "~> 1.50"
26
26
  spec.add_development_dependency "rake", "~> 13.0"
27
27
  spec.add_development_dependency "rspec", "~> 3.11"
28
- spec.add_development_dependency "rubocop-rspec", "~> 2.11"
28
+ spec.add_development_dependency "rubocop-rspec", "~> 3.9"
29
29
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-mdsol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Team Æ
8
8
  - Team 10
9
- autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2022-06-02 00:00:00.000000000 Z
11
+ date: 1980-01-02 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rubocop
@@ -17,14 +16,14 @@ dependencies:
17
16
  requirements:
18
17
  - - "~>"
19
18
  - !ruby/object:Gem::Version
20
- version: '1.0'
19
+ version: '1.50'
21
20
  type: :runtime
22
21
  prerelease: false
23
22
  version_requirements: !ruby/object:Gem::Requirement
24
23
  requirements:
25
24
  - - "~>"
26
25
  - !ruby/object:Gem::Version
27
- version: '1.0'
26
+ version: '1.50'
28
27
  - !ruby/object:Gem::Dependency
29
28
  name: rake
30
29
  requirement: !ruby/object:Gem::Requirement
@@ -59,15 +58,14 @@ dependencies:
59
58
  requirements:
60
59
  - - "~>"
61
60
  - !ruby/object:Gem::Version
62
- version: '2.11'
61
+ version: '3.9'
63
62
  type: :development
64
63
  prerelease: false
65
64
  version_requirements: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - "~>"
68
67
  - !ruby/object:Gem::Version
69
- version: '2.11'
70
- description:
68
+ version: '3.9'
71
69
  email:
72
70
  - ae@mdsol.com
73
71
  - team10@mdsol.com
@@ -88,17 +86,16 @@ files:
88
86
  - lib/rubocop/mdsol.rb
89
87
  - lib/rubocop/mdsol/inject.rb
90
88
  - lib/rubocop/mdsol/version.rb
89
+ - release-please-config.json
91
90
  - rubocop-mdsol.gemspec
92
91
  - rubocop-rails.yml
93
92
  - rubocop-rspec.yml
94
93
  - rubocop.yml
95
- homepage:
96
94
  licenses:
97
95
  - MIT
98
96
  metadata:
99
97
  homepage_uri: https://github.com/mdsol/rubocop-mdsol
100
98
  changelog_uri: https://github.com/mdsol/rubocop-mdsol/blob/develop/CHANGELOG.md
101
- post_install_message:
102
99
  rdoc_options: []
103
100
  require_paths:
104
101
  - lib
@@ -106,15 +103,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
106
103
  requirements:
107
104
  - - ">="
108
105
  - !ruby/object:Gem::Version
109
- version: 2.7.0
106
+ version: 3.2.0
110
107
  required_rubygems_version: !ruby/object:Gem::Requirement
111
108
  requirements:
112
109
  - - ">="
113
110
  - !ruby/object:Gem::Version
114
111
  version: '0'
115
112
  requirements: []
116
- rubygems_version: 3.3.15
117
- signing_key:
113
+ rubygems_version: 4.0.6
118
114
  specification_version: 4
119
115
  summary: Base RuboCop configuration files for Ruby projects at Medidata
120
116
  test_files: []