class CiCd::Builder::Manifest::Runner
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/cicd/builder/manifest.rb, line 19 def initialize() super @default_options[:builder] = VERSION end
Public Instance Methods
getBuilderVersion()
click to toggle source
# File lib/cicd/builder/manifest.rb, line 25 def getBuilderVersion { version: VERSION, major: MAJOR, minor: MINOR, patch: PATCH, } end
setup()
click to toggle source
Calls superclass method
# File lib/cicd/builder/manifest.rb, line 35 def setup() $stdout.write("ManifestBuilder v#{CiCd::Builder::Manifest::VERSION}\n") @default_options[:env_keys] << %w( MANIFEST_FILE CLASSES_FILE CLASSES_MANIFEST_FILE ) super end