From 6465b34e94a5acb9c6568f9e4a255abb98aeb76f Mon Sep 17 00:00:00 2001 From: wzissel Date: Mon, 30 Oct 2023 13:01:03 -0700 Subject: [PATCH 1/3] Avoids undefined method |[]| for NilClass error when parsing documentation --- lib/ey-core/cli/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ey-core/cli/deploy.rb b/lib/ey-core/cli/deploy.rb index de63d9b..08ff7bd 100644 --- a/lib/ey-core/cli/deploy.rb +++ b/lib/ey-core/cli/deploy.rb @@ -69,7 +69,7 @@ def handle end unless environment - abort "Unable to locate environment #{option[:environment]} in #{operator.name}".red + abort "Unable to locate environment #{options[:environment]} in #{operator.name}".red end unless option(:account) From 575b150cfa9b21bac5129accf00bd5b0d7e535dd Mon Sep 17 00:00:00 2001 From: wzissel Date: Mon, 30 Oct 2023 13:03:15 -0700 Subject: [PATCH 2/3] Specifies updated cookiejar version --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 80a7d76..a30cb31 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ gem "rack", "<= 2.1.4" # The rubygems.org repository contains the latest cookiejar of the version 0.3.3. # It is the latest published version. But the gem sources have several unpublished fixes. # One of them is about the support of the 'samesite' cookie which is used when we work with AWS ALB. -gem "cookiejar", git: 'https://github.com/dwaite/cookiejar', branch: 'master' +gem 'cookiejar', git: 'https://github.com/wzissel/cookiejar', branch: 'master' group :doc do gem 'yard' From 5efbbecda026fac5aee9c4a025ae61ad7cf20018 Mon Sep 17 00:00:00 2001 From: wzissel <38697205+wzissel@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:06:12 -0700 Subject: [PATCH 3/3] Restores original cookiejar version --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index a30cb31..80a7d76 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ gem "rack", "<= 2.1.4" # The rubygems.org repository contains the latest cookiejar of the version 0.3.3. # It is the latest published version. But the gem sources have several unpublished fixes. # One of them is about the support of the 'samesite' cookie which is used when we work with AWS ALB. -gem 'cookiejar', git: 'https://github.com/wzissel/cookiejar', branch: 'master' +gem "cookiejar", git: 'https://github.com/dwaite/cookiejar', branch: 'master' group :doc do gem 'yard'