rubocop-ruby3_1 2.0.2 → 2.0.4

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: c8870e83c81735f0d446915e84d0bad9a86c82f6ffc92c646d3117859c704aa8
4
- data.tar.gz: 5b9b7ef2011a4f9a5f29f77774d1d304ed45f297926e8d5c42840c2edfea2e2b
3
+ metadata.gz: c5cb09bab3512ee02b80530907189e9130bd245900847ee6d01812f84381662a
4
+ data.tar.gz: d018e3adf66fc9d258e9292773932f7e22f8b1866ba37355d248d3031aedec6c
5
5
  SHA512:
6
- metadata.gz: 158106a1989ae878165e08c390247f8eaf92ab94351193e4c702a069b9a57f3aa3078dfc56dbcfa51496e63bcc230d4eb4f9b235c7b0b19360ee169fe847b957
7
- data.tar.gz: 8451167f18abf26eaa43c7141a54b134d0794003059afbbcb9d5cdc644e97bde299c3e63ef68fdd301229ad8067eaad3eba2d44fbf47f366c3e143eee4d592bc
6
+ metadata.gz: b87e51b26855e26d1f223d45e4ad26ad50b97ca9850f42867478ce0072db83e085851609c909c74cb83fa82ba63484a0cef05b95e055a3117ed3ca1214782bd6
7
+ data.tar.gz: bd5fcf83a26481abd728744e7e259c3bc090ad3bfe87b2861aefe681df2a4dc5af7e83b84b923515def8916d5082c512f4a342347eb9b1377cb0cbdfb63d4b4f
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -10,9 +10,18 @@ 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.4] 2023-05-22
14
+ ### Fixed
15
+ - install_tasks and Railtie loading of rake tasks
16
+ ### Changed
17
+ - tasks.rake => tasks.rb
18
+
19
+ ## [2.0.3] 2023-05-21
20
+ ### Fixed
21
+ - Ship rake tasks in gem package
22
+
13
23
  ## [2.0.2] 2023-05-19
14
24
  ### Fixed
15
- - Ship rakelib/**/*.rake tasks
16
25
  - Fix rake_tasks hook on Railtie
17
26
 
18
27
  ## [2.0.1] 2023-05-17 [YANKED]
@@ -26,7 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
35
  - standard-rails
27
36
  - version_gem
28
37
 
29
- ## [2.0.0] 2023-05-09
38
+ ## [2.0.0] 2023-05-09 [YANKED]
30
39
  ### Changed
31
40
  - New/Better configs for:
32
41
  - rubocop
@@ -103,7 +112,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
103
112
  ### Added
104
113
  * Initial release
105
114
 
106
- [Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.2...HEAD
115
+ [Unreleased]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.4...HEAD
116
+ [2.0.4]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.3...v2.0.4
117
+ [2.0.3]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.2...v2.0.3
107
118
  [2.0.2]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.1...v2.0.2
108
119
  [2.0.1]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v2.0.0...v2.0.1
109
120
  [2.0.0]: https://gitlab.com/rubocop-lts/rubocop-ruby3_1/-/compare/v1.1.4...v2.0.0
@@ -5,8 +5,7 @@ module Rubocop
5
5
 
6
6
  if Rails.env.test? || Rails.env.development?
7
7
  rake_tasks do
8
- path = File.expand_path(__dir__)
9
- Dir.glob("#{path}/rakelib/**/*.rake").each { |f| load f }
8
+ Rubocop::Ruby31.install_tasks
10
9
  end
11
10
  end
12
11
  end
@@ -0,0 +1,11 @@
1
+ begin
2
+ require "rubocop/gradual/rake_task"
3
+
4
+ RuboCop::Gradual::RakeTask.new(:rubocop_gradual)
5
+ desc "alias rubocop task to rubocop_gradual"
6
+ task rubocop: :rubocop_gradual
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"
10
+ end
11
+ end
@@ -0,0 +1,5 @@
1
+ # Load from a "rakelib" directory is automatic!
2
+ # Adding our custom directory of tasks as a rakelib directory makes them available.
3
+ abs_path = File.expand_path(__dir__)
4
+ rakelib = "#{abs_path}/rakelib"
5
+ Rake.add_rakelib(rakelib)
@@ -3,7 +3,7 @@
3
3
  module Rubocop
4
4
  module Ruby31
5
5
  module Version
6
- VERSION = "2.0.2"
6
+ VERSION = "2.0.4"
7
7
  end
8
8
  end
9
9
  end
@@ -13,7 +13,7 @@ module Rubocop
13
13
  # Namespace of this library
14
14
  module Ruby31
15
15
  module_function def install_tasks
16
- load "rubocop/ruby3_1/tasks.rake"
16
+ load "rubocop/ruby3_1/tasks.rb"
17
17
  end
18
18
  end
19
19
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-ruby3_1
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.4
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-19 00:00:00.000000000 Z
39
+ date: 2023-05-22 00:00:00.000000000 Z
40
40
  dependencies:
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rubocop-gradual
@@ -219,6 +219,8 @@ files:
219
219
  - SECURITY.md
220
220
  - lib/rubocop/ruby3_1.rb
221
221
  - lib/rubocop/ruby3_1/railtie.rb
222
+ - lib/rubocop/ruby3_1/rakelib/rubocop_gradual.rake
223
+ - lib/rubocop/ruby3_1/tasks.rb
222
224
  - lib/rubocop/ruby3_1/version.rb
223
225
  - rubocop-lts/rails.yml
224
226
  - rubocop-lts/rails_rspec.yml
@@ -237,10 +239,10 @@ licenses:
237
239
  - MIT
238
240
  metadata:
239
241
  homepage_uri: https://github.com/rubocop-lts/rubocop-ruby3_1
240
- source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v2.0.2
241
- changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v2.0.2/CHANGELOG.md
242
+ source_code_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/tree/v2.0.4
243
+ changelog_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/blob/v2.0.4/CHANGELOG.md
242
244
  bug_tracker_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/issues
243
- documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/2.0.2
245
+ documentation_uri: https://www.rubydoc.info/gems/rubocop-ruby3_1/2.0.4
244
246
  funding_uri: https://liberapay.com/pboling
245
247
  wiki_uri: https://github.com/rubocop-lts/rubocop-ruby3_1/wiki
246
248
  rubygems_mfa_required: 'true'
metadata.gz.sig CHANGED
Binary file