| Age | Commit message (Collapse) | Author |
|
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v1.28.2...v1.50.2)
---
updated-dependencies:
- dependency-name: rubocop
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
Those ancient things are several years EOL
|
|
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version.
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop/compare/v0.81.0...v1.12.1)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
|
|
|
|
|
|
resolves #223
Rubocop config was takes as-is from https://github.com/asciidoctor/asciidoctor-pdf/blob/e80edba41fa724bef5f43ca30028afd873e07317/.rubocop.yml
* Apply rubocop auto-fix
Manual adjustments:
1. Changed parentheses in nested assignments in packager.rb
Old:
if ::File.readable?(resolved_avatar = ::File.join workdir, avatar)
New:
if ::File.readable? resolved_avatar = (::File.join workdir, avatar)
2. Dropped pre-ruby-2.0 support from Gemfile
3. Joined nested if's starting with `if doc.attr? 'publisher'` into if/elsif chain in packager.rb
It was triggering 'Bundler/DuplicatedGem: Gem kindlegen requirements already given on line 12 of the Gemfile.'.
But since oldest supported is 2.3, this should be ok.
|