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 recieve a hash") unless val.kind_of?(Hash)
  @options = val
end