module SauceWhisk

def self.password

def self.password
  configured_key = self.load_first_found(:access_key)
  return configured_key unless configured_key.nil? || configured_key.empty?
  raise ::ArgumentError.new "Couldn't find Access Key in Sauce::Config, yaml file or Environment Variables"
end