# typed: false # frozen_string_literal: true require "active_support/concern" require "English" module Hephaestus module ExitOnFailure extend ActiveSupport::Concern # def bundle_command(*args) # run("bundle", args) # exit(false) if $CHILD_STATUS.exitstatus.nonzero? # end module ClassMethods def exit_on_failure? true end end end end