module Mixlib::CLI::ClassMethods

def options=(val)

@options:: The current options hash.
=== Returns

val:: The hash to set the options to
=== Parameters

Set the current options hash
def options=(val)
  raise(ArgumentError, "Options must receive a hash") unless val.is_a?(Hash)
  @options = val
end