rubocop-ruby2_0 1.0.4 → 2.0.1

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: 5e3f004c15655b514861df2a2ec1c832cd7875c5a455d1bfb7282fdd6e67c200
4
- data.tar.gz: 898f5f0284faf97f4c0d6465b7f231c56eef7b4d9d74eb841318c3a07e6739cb
3
+ metadata.gz: e6df4ce0ae7f16db092a9aead8dade3a42fd50dcaabcbe16e1fcd52dc2c4b352
4
+ data.tar.gz: e09edadd66defbd7b83f731d796d517ae9abefe3565b08abd4338a3fad9bcbf7
5
5
  SHA512:
6
- metadata.gz: 9f3bb4c5a90f8e60a1bab967c2d8ff5bf2a70975e731154a6d55ce4e1ce0dd4611d70842da098dd973be6050f73cebeab973ce6beb0875dd9f596c0a27dd3aec
7
- data.tar.gz: 8729298527571129aa658fb9311cfdab23ba293751007db6b3c5159ac61e7c0473446afa8e2b26a945ecaa969c4aa2830000158e8b54aaeee7faeb4b1ea6b36b
6
+ metadata.gz: 9305a714251ac12803cb9d0204282348f363d9f60f2be7c4a879fc41daa9e20f5d5ca72bcbb8ca0b7bf7f437f92e5d02a25a886ae504e60e52b66507b72fea8a
7
+ data.tar.gz: 93612ce57d937839f32585598779691a619afe92f62fe693363f2a6dcf5819f7dcb701d71ba8a2157bc9098f41de03d15baf5f190adafe30fd44a1adb68c0fd7
checksums.yaml.gz.sig ADDED
Binary file
data/CHANGELOG.md CHANGED
@@ -6,36 +6,70 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
  ### Added
9
-
10
9
  ### Changed
10
+ ### Fixed
11
+ ### Removed
11
12
 
13
+ ## [2.0.1] 2023-05-18
12
14
  ### Fixed
15
+ - Ship lib/rubocop/ruby1_9/rakelib/rubocop_gradual.rake
16
+ - Fix rake_tasks hook on Railtie
13
17
 
18
+ ## [2.0.0] 2023-05-17 [YANKED]
19
+ ### Added
20
+ - Configs for:
21
+ - rubocop
22
+ - rubocop-gradual
23
+ - rubocop-md
24
+ - rubocop-rake
25
+ - rubocop-shopify
26
+ - rubocop-thread_safety
27
+ - standard
28
+ - standard-performance
29
+ - standard-custom
30
+ - standard-rubocop-lts
31
+ - And optionally, if you are using RSpec:
32
+ - rubocop-rspec
33
+ - And optionally, if you are building a RubyGem:
34
+ - rubocop-packaging
35
+ - And optionally, if you are building a Rails app:
36
+ - betterlint
37
+ - standard-rails
38
+ - version_gem
14
39
  ### Removed
40
+ - rubocop-ruby1_8.yml (replaced with a wholly separate gem [rubocop-ruby1_8](https://gitlab.com/rubocop-lts/rubocop-ruby1_8)
41
+ - Support for Ruby <= 2.6. Minimum Ruby Version is now 2.7
42
+
43
+ ## [1.0.5] 2022-05-22
44
+ ### Added
45
+ - Better documentation
15
46
 
16
47
  ## [1.0.4] 2022-05-22
17
48
  ### Added
18
- * Better documentation
19
- * Rubocop => RuboCop typo repair
20
- * Ruby Version Support Matrix
49
+ - Better documentation
50
+ - Rubocop => RuboCop typo repair
51
+ - Ruby Version Support Matrix
21
52
 
22
53
  ## [1.0.3] 2022-05-03
23
54
  ### Added
24
- * Style/BracesAroundHashParameters configured to help transition to Ruby 2.7+
55
+ - Style/BracesAroundHashParameters configured to help transition to Ruby 2.7+
25
56
 
26
57
  ## [1.0.2] 2022-05-03
27
58
  ### Fixed
28
- * Added missing rubocop.yml for inherit_gem directive
59
+ - Added missing rubocop.yml for inherit_gem directive
29
60
 
30
61
  ## [1.0.1] 2022-05-02
31
62
  ### Added
32
- * Documentation
63
+ - Documentation
33
64
 
34
65
  ## [1.0.0] 2022-05-01
35
66
  ### Added
36
- * Initial release
67
+ - Initial release
37
68
 
38
- [Unreleased]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.4...HEAD
69
+ [Unreleased]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v2.0.1...HEAD
70
+ [2.0.1]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v2.0.0...v2.0.1
71
+ [2.0.0]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.5...v2.0.0
72
+ [1.0.5]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.4...v1.0.5
39
73
  [1.0.4]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.3...v1.0.4
40
74
  [1.0.3]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.2...v1.0.3
41
75
  [1.0.2]: https://github.com/rubocop-lts/rubocop-ruby2_0/compare/v1.0.1...v1.0.2
data/CONTRIBUTING.md CHANGED
@@ -1,25 +1,39 @@
1
1
  ## Contributing
2
2
 
3
- Bug reports and pull requests are welcome on GitHub at [https://github.com/rubocop-lts/rubocop-ruby2_0][source]
3
+ Bug reports and pull requests are welcome on GitLab at [https://gitlab.com/rubocop-lts/rubocop-ruby2_0][🚎src-main]
4
4
  . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to
5
5
  the [code of conduct][conduct].
6
6
 
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!
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
+ and post a message to the [gitter chat][🏘chat].
8
9
 
9
- ## Contributors
10
-
11
- [![Contributors](https://contrib.rocks/image?repo=rubocop-lts/rubocop-ruby2_0)][contributors]
10
+ ## Release
12
11
 
13
- Made with [contributors-img][contrib-rocks].
12
+ To release a new version:
14
13
 
15
- [comment]: <> (Following links are used by README, CONTRIBUTING)
14
+ 1. Run `bin/setup && bin/rake` as a tests, coverage, & linting sanity check.
15
+ 2. update the version number in `version.rb`
16
+ 3. Run `bin/setup && bin/rake` again as a secondary check, and to update `Gemfile.lock`.
17
+ 4. run `bundle exec rake build:checksum`
18
+ 5. move the built gem to project root
19
+ 6. run `bin/checksum` to create the missing SHA256 checksum
20
+ 7. move the built gem back to `pkg/`
21
+ 8. commit the changes
22
+ 9. run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][rubygems].
16
23
 
17
- [conduct]: https://github.com/rubocop-lts/rubocop-ruby2_0/blob/main/CODE_OF_CONDUCT.md
24
+ NOTE: You will need to have a public key in `certs/`, and list your cert in the
25
+ `gemspec`, in order to sign the new release.
26
+ See: [RubyGems Security Guide][rubygems-security-guide]
18
27
 
19
- [contrib-rocks]: https://contrib.rocks
28
+ ## Contributors
20
29
 
21
- [contributors]: https://github.com/rubocop-lts/rubocop-ruby2_0/graphs/contributors
30
+ See: [https://gitlab.com/rubocop-lts/rubocop-ruby2_0/-/graphs/main][🖐contributors]
22
31
 
23
32
  [comment]: <> (Following links are used by README, CONTRIBUTING, Homepage)
24
33
 
25
- [source]: https://github.com/rubocop-lts/rubocop-ruby2_0/
34
+ [🤝conduct]: https://gitlab.com/rubocop-lts/rubocop-ruby2_0/-/blob/main/CODE_OF_CONDUCT.md
35
+ [🖐contributors]: https://gitlab.com/rubocop-lts/rubocop-ruby2_0/-/graphs/main
36
+ [🚎src-main]: https://gitlab.com/rubocop-lts/rubocop-ruby2_0/-/tree/main
37
+ [🏘chat]: https://gitter.im/rubocop-lts/community
38
+ [rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
39
+ [rubygems]: https://rubygems.org
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Peter Boling
3
+ Copyright (c) 2022 - 2023 Peter H. Boling of https://railsbling.com
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal