class CFoundry::Client
Public Class Methods
get(*args)
click to toggle source
# File lib/cfoundry/client.rb, line 38 def self.get(*args) CFoundry::V2::Client.new(*args).tap { |client| client.info } end
new(*args)
click to toggle source
# File lib/cfoundry/client.rb, line 33 def self.new(*args) warn "DEPRECATION WARNING: Please use CFoundry::Client.get instead of CFoundry::Client.new" get(*args) end