Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/input/arguments/default.rb')
-rw-r--r--lib/gitlab/ci/input/arguments/default.rb48
1 files changed, 0 insertions, 48 deletions
diff --git a/lib/gitlab/ci/input/arguments/default.rb b/lib/gitlab/ci/input/arguments/default.rb
deleted file mode 100644
index c6762b04870..00000000000
--- a/lib/gitlab/ci/input/arguments/default.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-# frozen_string_literal: true
-
-module Gitlab
- module Ci
- module Input
- module Arguments
- ##
- # Input::Arguments::Default class represents user-provided input argument that has a default value.
- #
- class Default < Input::Arguments::Base
- def validate!
- return error('argument specification invalid') unless spec.key?(:default)
-
- error('invalid default value') unless default.is_a?(String) || default.nil?
- end
-
- ##
- # User-provided value needs to be specified, but it may be an empty string:
- #
- # ```yaml
- # inputs:
- # env:
- # default: development
- #
- # with:
- # env: ""
- # ```
- #
- # The configuration above will result in `env` being an empty string.
- #
- def to_value
- value.nil? ? default : value
- end
-
- def default
- spec[:default]
- end
-
- def self.matches?(spec)
- return false unless spec.is_a?(Hash)
-
- spec.count == 1 && spec.each_key.first == :default
- end
- end
- end
- end
- end
-end