lib/kubernetes-deploy.rb in kubernetes-deploy-0.6.1 vs lib/kubernetes-deploy.rb in kubernetes-deploy-0.6.2

- old
+ new

@@ -2,20 +2,14 @@ require 'active_support/core_ext/object/blank' require 'active_support/core_ext/hash/slice' require 'active_support/core_ext/numeric/time' require 'active_support/core_ext/string/inflections' require 'active_support/core_ext/string/strip' +require 'active_support/core_ext/hash/keys' +require 'kubernetes-deploy/errors' require 'kubernetes-deploy/logger' require 'kubernetes-deploy/runner' module KubernetesDeploy - class FatalDeploymentError < StandardError; end - - class NamespaceNotFoundError < FatalDeploymentError - def initialize(name, context) - super("Namespace `#{name}` not found in context `#{context}`. Aborting the task.") - end - end - include Logger end