class MDSSExtra

Wrapper class around helper methods.

Public Instance Methods

puts_err(err) → nil click to toggle source

Output an error message to STDOUT and terminate.

# File lib/mdss/extra.rb, line 21
def puts_err(err)
    puts "ERROR: #{err}. Terminating"
    exit
end
puts_warn(err) → nil click to toggle source

Output a warning message to STDOUT.

# File lib/mdss/extra.rb, line 11
def puts_warn(err)
    puts "WARNING: #{err}"
end