module AWS::SimpleWorkflow::OptionFormatters
def upcase_opts options, *opt_names
def upcase_opts options, *opt_names opt_names.each do |opt| if options.has_key?(opt) options[opt] = options[opt].to_s.upcase end end end
def upcase_opts options, *opt_names opt_names.each do |opt| if options.has_key?(opt) options[opt] = options[opt].to_s.upcase end end end