rubocop-ruby1_9 2.0.4 โ†’ 2.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42cc343721901283b8a7b1d4b85426fc3f9db50750ee0ed33d239250ef1603f7
4
- data.tar.gz: 42d0a3491a483cf9728a7ceda2aa587303d5ba4e32fdb52ef0e11aa6a92373a4
3
+ metadata.gz: 5966a9d43212e2a6a95f6d02bd0a2c27fc9bb12fa007db95c248342b198f23fa
4
+ data.tar.gz: a421b8a85936db4cbd0d1ab1f0d6312dc8b733c0f9e827f3b89bebb790053a67
5
5
  SHA512:
6
- metadata.gz: 30bd4704f53276111ef4f278d790a813a809c8a5690dfa5bd7a131d1aa945467223785046c9cecfba4ceab18ceb82dd46ec2cd096f3b256eeef19705e0091c5e
7
- data.tar.gz: 03d411bda65ae25b09867123211974b1d14578b283d9cf1a4c613d97a9bbabc80dcf97625354e43fdb6e4fa3e1ef229fe3eb857c45600c5531b57ec4c043a4e4
6
+ metadata.gz: 8b25eb3ad33c28f2259b5f9f002a756edd022bb0829090ab6a3fe912f83c6d5699fd5172b85cac997f4f613dcdeab14ba5971070b4c2242709ec16956b13e75e
7
+ data.tar.gz: 6ee931a7ab20261e9b31f5c59a1508d2ea47b75411867dbad3a12db107e936901558742a19f58dcbc664d33aa11d93aca8e4937a9fd55b8ba7ee3a6733669889
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -10,6 +10,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
  ### Fixed
11
11
  ### Removed
12
12
 
13
+ ## [2.0.6] 2023-06-14
14
+ ### Changed
15
+ - Moved development dependencies out of gemspec
16
+ - rubocop to 1.52.1
17
+ - rubocop-shopify to 2.14
18
+ - standard-custom to 1.0.1
19
+ - standard-rubocop-lts to 1.0.7
20
+ - version_gem to 1.1.3
21
+ ### Fixed
22
+ - rubocop/rails.yml config
23
+ - betterlint integration
24
+ - standard-rails integration
25
+ - bin/pry now pre-loads this library
26
+
27
+ ## [2.0.5] 2023-06-05
28
+ ### Added
29
+ - Dependencies
30
+ - yard-junk
31
+ - redcarpet
32
+ - pry, IRB alternative
33
+ - pry-suite
34
+ - debase, for IDE debugging
35
+ - Some rules should ignore specs/tests
36
+ - Style/MethodCallWithArgsParentheses
37
+ - Style/ClassAndModuleChildren
38
+ ### Fixed
39
+ - `yard` documentation task
40
+ ### Changed
41
+ - Added Include to inherit_mode: merge
42
+ - Updated dependency on standard-rubocop-lts
43
+
13
44
  ## [2.0.4] 2023-05-22
14
45
  ### Fixed
15
46
  - install_tasks and Railtie loading of rake tasks
@@ -85,7 +116,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
85
116
  ### Added
86
117
  - Initial release
87
118
 
88
- [Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.4...HEAD
119
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.6...HEAD
120
+ [2.0.6]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.5...v2.0.6
121
+ [2.0.5]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.4...v2.0.5
89
122
  [2.0.4]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.3...v2.0.4
90
123
  [2.0.3]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.2...v2.0.3
91
124
  [2.0.2]: https://github.com/rubocop-lts/rubocop-ruby1_9/compare/v2.0.1...v2.0.2
data/CONTRIBUTING.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/rubocop-lts/rubocop-ruby1_9][๐ŸšŽsrc-main]
4
4
  . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
5
- the [code of conduct][conduct].
5
+ the [code of conduct][๐Ÿคconduct].
6
6
 
7
7
  To submit a patch, please fork the project and create a patch with tests. Once you're happy with it send a pull request
8
8
  and post a message to the [gitter chat][๐Ÿ˜chat].
data/README.md CHANGED
@@ -365,7 +365,7 @@ the [Pessimistic Version Constraint][pvc] with two digits of precision.
365
365
  For example:
366
366
 
367
367
  ```ruby
368
- spec.add_dependency "rubocop-ruby1_9", "~> 2.0"
368
+ spec.add_dependency("rubocop-ruby1_9", "~> 2.0")
369
369
  ```
370
370
 
371
371
  [aboutme]: https://about.me/peter.boling
@@ -2,10 +2,10 @@ begin
2
2
  require "rubocop/gradual/rake_task"
3
3
 
4
4
  RuboCop::Gradual::RakeTask.new(:rubocop_gradual)
5
- desc "alias rubocop task to rubocop_gradual"
6
- task rubocop: :rubocop_gradual
5
+ desc("alias rubocop task to rubocop_gradual")
6
+ task(rubocop: :rubocop_gradual)
7
7
  rescue LoadError
8
- task :rubocop_gradual do
9
- warn "NOTE: rubocop-gradual isn't installed, or is disabled for #{RUBY_VERSION} in the current environment"
8
+ task(:rubocop_gradual) do
9
+ warn("NOTE: rubocop-gradual isn't installed, or is disabled for #{RUBY_VERSION} in the current environment")
10
10
  end
11
11
  end
@@ -3,7 +3,7 @@
3
3
  module Rubocop
4
4
  module Ruby19
5
5
  module Version
6
- VERSION = "2.0.4"
6
+ VERSION = "2.0.6"
7
7
  end
8
8
  end
9
9
  end
@@ -13,7 +13,7 @@ module Rubocop
13
13
  # Namespace of this library
14
14
  module Ruby19
15
15
  module_function def install_tasks
16
- load "rubocop/ruby1_9/tasks.rb"
16
+ load("rubocop/ruby1_9/tasks.rb")
17
17
  end
18
18
  end
19
19
  end
@@ -5,7 +5,11 @@ inherit_from:
5
5
 
6
6
  require:
7
7
  - rubocop-rails
8
- - standard-rails
9
- - betterlint
8
+
9
+ inherit_gem:
10
+ betterlint:
11
+ - config/default.yml
12
+ standard-rails:
13
+ - config/base.yml
10
14
 
11
15
  # Rails specific customizations
@@ -7,3 +7,13 @@ inherit_gem:
7
7
 
8
8
  inherit_from:
9
9
  - strict/rspec.yml
10
+
11
+ Style/MethodCallWithArgsParentheses:
12
+ Exclude:
13
+ - 'spec/**/*'
14
+ - 'test/**/*'
15
+
16
+ Style/ClassAndModuleChildren:
17
+ Exclude:
18
+ - 'spec/**/*'
19
+ - 'test/**/*'
data/rubocop-lts/ruby.yml CHANGED
@@ -5,6 +5,7 @@
5
5
  inherit_mode:
6
6
  merge:
7
7
  - Exclude
8
+ - Include
8
9
 
9
10
  require:
10
11
  # Loads the Standard Ruby suite of gems, and configures for rubocop-lts:
@@ -21,10 +22,14 @@ require:
21
22
  # RuboCop Gradual can be used in "Require mode", which is a way to replace rubocop with rubocop-gradual:
22
23
  - rubocop/gradual/patch
23
24
 
25
+ # Rules are overridden in a LIFO stack.
26
+ # If rubocop-shopify is loaded first, and standard-rubocop-lts after it,
27
+ # then rubocop-shopify's rules will take precedence.
28
+ # This is the opposite of what you might expect.
29
+ # Below: rubocop-shopify rules will override standard-rubocop-lts's (i.e. standard's) rules.
24
30
  inherit_gem:
25
- standard-rubocop-lts: config/ruby-1.9.yml
26
- # shopify rules will override standard's rules.
27
31
  rubocop-shopify: rubocop.yml
32
+ standard-rubocop-lts: config/ruby-1.9.yml
28
33
 
29
34
  inherit_from:
30
35
  - strict/ruby.yml
data/rubocop.yml CHANGED
@@ -12,4 +12,4 @@
12
12
  # rubocop-ruby1_9: rubocop.yml # for the ruby + rspec
13
13
 
14
14
  inherit_from:
15
- - rubocop-lts/ruby_rspec.yml
15
+ - rubocop-lts/rubygem_rspec.yml
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby1_9
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -36,7 +36,7 @@ cert_chain:
36
36
  gwGrEXGQGDZ0NIgBcmvMOqlXjkGQwQvugKycJ024z89+fz2332vdZIKTrSxJrXGk
37
37
  4/bR9A==
38
38
  -----END CERTIFICATE-----
39
- date: 2023-05-22 00:00:00.000000000 Z
39
+ date: 2023-06-14 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop-gradual
@@ -45,6 +45,9 @@ dependencies:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0.3'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 0.3.1
48
51
  type: :runtime
49
52
  prerelease: false
50
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -52,6 +55,9 @@ dependencies:
52
55
  - - "~>"
53
56
  - !ruby/object:Gem::Version
54
57
  version: '0.3'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 0.3.1
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: rubocop-md
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +92,14 @@ dependencies:
86
92
  requirements:
87
93
  - - "~>"
88
94
  - !ruby/object:Gem::Version
89
- version: '2.13'
95
+ version: '2.14'
90
96
  type: :runtime
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
100
  - - "~>"
95
101
  - !ruby/object:Gem::Version
96
- version: '2.13'
102
+ version: '2.14'
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: rubocop-thread_safety
99
105
  requirement: !ruby/object:Gem::Requirement
@@ -101,6 +107,9 @@ dependencies:
101
107
  - - "~>"
102
108
  - !ruby/object:Gem::Version
103
109
  version: '0.5'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 0.5.1
104
113
  type: :runtime
105
114
  prerelease: false
106
115
  version_requirements: !ruby/object:Gem::Requirement
@@ -108,33 +117,36 @@ dependencies:
108
117
  - - "~>"
109
118
  - !ruby/object:Gem::Version
110
119
  version: '0.5'
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 0.5.1
111
123
  - !ruby/object:Gem::Dependency
112
124
  name: standard-rubocop-lts
113
125
  requirement: !ruby/object:Gem::Requirement
114
126
  requirements:
115
- - - ">="
127
+ - - "~>"
116
128
  - !ruby/object:Gem::Version
117
- version: 1.0.1
118
- - - "<"
129
+ version: '1.0'
130
+ - - ">="
119
131
  - !ruby/object:Gem::Version
120
- version: '2'
132
+ version: 1.0.7
121
133
  type: :runtime
122
134
  prerelease: false
123
135
  version_requirements: !ruby/object:Gem::Requirement
124
136
  requirements:
125
- - - ">="
137
+ - - "~>"
126
138
  - !ruby/object:Gem::Version
127
- version: 1.0.1
128
- - - "<"
139
+ version: '1.0'
140
+ - - ">="
129
141
  - !ruby/object:Gem::Version
130
- version: '2'
142
+ version: 1.0.7
131
143
  - !ruby/object:Gem::Dependency
132
144
  name: version_gem
133
145
  requirement: !ruby/object:Gem::Requirement
134
146
  requirements:
135
147
  - - ">="
136
148
  - !ruby/object:Gem::Version
137
- version: 1.1.2
149
+ version: 1.1.3
138
150
  - - "<"
139
151
  - !ruby/object:Gem::Version
140
152
  version: '3'
@@ -144,66 +156,10 @@ dependencies:
144
156
  requirements:
145
157
  - - ">="
146
158
  - !ruby/object:Gem::Version
147
- version: 1.1.2
159
+ version: 1.1.3
148
160
  - - "<"
149
161
  - !ruby/object:Gem::Version
150
162
  version: '3'
151
- - !ruby/object:Gem::Dependency
152
- name: rubocop-packaging
153
- requirement: !ruby/object:Gem::Requirement
154
- requirements:
155
- - - "~>"
156
- - !ruby/object:Gem::Version
157
- version: '0.5'
158
- type: :development
159
- prerelease: false
160
- version_requirements: !ruby/object:Gem::Requirement
161
- requirements:
162
- - - "~>"
163
- - !ruby/object:Gem::Version
164
- version: '0.5'
165
- - !ruby/object:Gem::Dependency
166
- name: rubocop-rspec
167
- requirement: !ruby/object:Gem::Requirement
168
- requirements:
169
- - - "~>"
170
- - !ruby/object:Gem::Version
171
- version: '2.22'
172
- type: :development
173
- prerelease: false
174
- version_requirements: !ruby/object:Gem::Requirement
175
- requirements:
176
- - - "~>"
177
- - !ruby/object:Gem::Version
178
- version: '2.22'
179
- - !ruby/object:Gem::Dependency
180
- name: standard-rails
181
- requirement: !ruby/object:Gem::Requirement
182
- requirements:
183
- - - "~>"
184
- - !ruby/object:Gem::Version
185
- version: '0.1'
186
- type: :development
187
- prerelease: false
188
- version_requirements: !ruby/object:Gem::Requirement
189
- requirements:
190
- - - "~>"
191
- - !ruby/object:Gem::Version
192
- version: '0.1'
193
- - !ruby/object:Gem::Dependency
194
- name: betterlint
195
- requirement: !ruby/object:Gem::Requirement
196
- requirements:
197
- - - "~>"
198
- - !ruby/object:Gem::Version
199
- version: '1.4'
200
- type: :development
201
- prerelease: false
202
- version_requirements: !ruby/object:Gem::Requirement
203
- requirements:
204
- - - "~>"
205
- - !ruby/object:Gem::Version
206
- version: '1.4'
207
163
  description: Configure RuboCop + a bevy of friends to gradually lint Ruby 1.9 code
208
164
  email:
209
165
  - peter.boling@gmail.com
@@ -239,10 +195,10 @@ licenses:
239
195
  - MIT
240
196
  metadata:
241
197
  homepage_uri: https://github.com/rubocop-lts/rubocop-ruby1_9
242
- source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v2.0.4
243
- changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v2.0.4/CHANGELOG.md
198
+ source_code_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/tree/v2.0.6
199
+ changelog_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/blob/v2.0.6/CHANGELOG.md
244
200
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/issues
245
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/2.0.4
201
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby1_9/2.0.6
246
202
  funding_uri: https://liberapay.com/pboling
247
203
  wiki_uri: https://github.com/rubocop-lts/rubocop-ruby1_9/wiki
248
204
  rubygems_mfa_required: 'true'
metadata.gz.sig CHANGED
Binary file