class DPL::Provider::BluemixCloudFoundry

Constants

REGIONS

Public Instance Methods

check_auth() click to toggle source
Calls superclass method
# File lib/dpl/provider/bluemix_cloud_foundry.rb, line 16
def check_auth
  set_api
  super
end
set_api() click to toggle source
# File lib/dpl/provider/bluemix_cloud_foundry.rb, line 11
def set_api
  region = options[:region] || "ng"
  options[:api] = options[:api] || REGIONS[region]
end