From 1ab7405e364e63e7c63ad24da34493f59db66c2d Mon Sep 17 00:00:00 2001 From: fig Date: Sat, 19 Aug 2023 22:56:54 +0100 Subject: [PATCH] require ActiveSupport module to provide String#remove fixes #421 --- lib/kamal/commands/builder.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/kamal/commands/builder.rb b/lib/kamal/commands/builder.rb index beb7e289..750482f2 100644 --- a/lib/kamal/commands/builder.rb +++ b/lib/kamal/commands/builder.rb @@ -1,3 +1,5 @@ +require "active_support/core_ext/string/filters" + class Kamal::Commands::Builder < Kamal::Commands::Base delegate :create, :remove, :push, :clean, :pull, :info, to: :target