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 +4 -4
- data/CHANGELOG.md +12 -3
- data/README.md +1 -1
- data/lib/rubocop/mdsol/version.rb +1 -1
- data/release-please-config.json +11 -0
- data/rubocop-mdsol.gemspec +3 -3
- metadata +9 -13
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 789ea864d3e9552748c8759c957d64108fedfe2ed33df01c0636627d49c8d8fe
|
|
4
|
+
data.tar.gz: 06b2044e09fe126acbdcc97ba64fcbd662c925c4a9ae1a5d8a2a34a99fc074c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44552a0d5e7a7283cfbf6b21b61ff2b3c37757df2dc9fd0b2a50be1aa61917eda6dfc6821d4cd0c6d0f41b17229e952903a5414e0a921fcfca3f564aa9958a0b
|
|
7
|
+
data.tar.gz: 6b6bb81b819565ab061b51d6689aeba69c552506beac76402a7b3f58bcee4ceb2fe1289f9f31a0cadd6b33cf69b200da9d06b2b79f2dc8303a266cdec88c7a8f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
|
-
#
|
|
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
|
-
|
|
14
|
+
## 0.2.0
|
|
6
15
|
- Add rubocop-rspec.yml.
|
|
7
16
|
|
|
8
|
-
|
|
17
|
+
## 0.1.0
|
|
9
18
|
- Initial release.
|
data/README.md
CHANGED
data/rubocop-mdsol.gemspec
CHANGED
|
@@ -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.
|
|
22
|
+
spec.required_ruby_version = ">= 3.2.0"
|
|
23
23
|
spec.require_paths = ["lib"]
|
|
24
24
|
|
|
25
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
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", "~>
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
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: '
|
|
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: '
|
|
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.
|
|
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:
|
|
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: []
|