From afb4202e75f55909563b6213fc05591ee02a9684 Mon Sep 17 00:00:00 2001 From: Alex Evanczuk Date: Fri, 14 Apr 2023 17:37:54 -0400 Subject: [PATCH 1/2] Use ruby 3.0.6 --- .ruby-version | 1 + 1 file changed, 1 insertion(+) create mode 100644 .ruby-version diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..818bd47 --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +3.0.6 From b638f2ab4c46d4402b000bf1e6fe6eba4968767a Mon Sep 17 00:00:00 2001 From: Alex Evanczuk Date: Mon, 17 Apr 2023 13:57:40 -0400 Subject: [PATCH 2/2] Fix rubocop Error message was: ``` use_packs.gemspec:22:32: W: Gemspec/RequiredRubyVersion: required_ruby_version and TargetRubyVersion (3.0, which may be specified in .rubocop.yml) should be equal. spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0') ``` --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.rubocop.yml b/.rubocop.yml index fa715c9..2608741 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -13,6 +13,7 @@ AllCops: SuggestExtensions: false Exclude: - vendor/bundle/**/** + TargetRubyVersion: 2.6.0 Metrics/ParameterLists: Enabled: false