summaryrefslogtreecommitdiff
path: root/tasks
AgeCommit message (Collapse)Author
2024-01-07Update rubocop requirement from ~> 1.28.2 to ~> 1.50.2 (#454)dependabot[bot]
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>
2020-02-29Remove yard-related stuff, we're not using itMarat Radchenko
2020-01-20resolves #223 set up Rubocop linter (PR #226)Marat Radchenko
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.
2020-01-18reconfigure rake so tasks are defined in individual filesDan Allen