diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-09-04 02:07:29 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-09-04 02:07:29 -0600 |
| commit | bbf2f6a8a8fddac40eac55e55895725eebdda75b (patch) | |
| tree | 4415eb15f7db83d2ea8330879e4cc30aee246bcb | |
| parent | 5cb8d4baf7d47906a1ceb77e8d260c083bfbd828 (diff) | |
require Gem::Version patch in Gemfile instead of Rakefile
| -rw-r--r-- | Gemfile | 2 | ||||
| -rw-r--r-- | Rakefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -2,6 +2,8 @@ source 'https://rubygems.org' +require_relative 'gem-version-patch' + # Look in asciidoctor-pdf.gemspec for runtime and development dependencies gemspec @@ -1,7 +1,5 @@ # frozen_string_literal: true -require_relative 'gem-version-patch' - $default_tasks = [] # rubocop:disable Style/GlobalVars Dir.glob('tasks/*.rake').each {|file| load file } task default: $default_tasks unless $default_tasks.empty? # rubocop:disable Style/GlobalVars |
