# File lib/rhc/rest/application.rb, line 197 def unset_environment_variables(env_vars=[]) debug "Removing environment variable(s) #{env_vars.inspect} for #{name}" if supports? "SET_UNSET_ENVIRONMENT_VARIABLES" rest_method "SET_UNSET_ENVIRONMENT_VARIABLES", :environment_variables => env_vars.map{|item| {:name => item}} else raise RHC::EnvironmentVariablesNotSupportedException.new end end