Sha256: 3226f61d827108b3c96be0e57c0ad44a5bbac844f26e254b7f47e3c733995b74

Contents?: true

Size: 1.06 KB

Versions: 8

Compression:

Stored size: 1.06 KB

Contents

require "jfoundry/concerns/proxy_options"

require "jfoundry/baseclient"
require "jfoundry/rest_client"
#require "jfoundry/auth_token"

require "jfoundry/v2/app"
require "jfoundry/v2/service"
require "jfoundry/v2/service_binding"
require "jfoundry/v2/managed_service_instance"
require "jfoundry/v2/user_provided_service_instance"
require "jfoundry/v2/service_plan"
#require "jfoundry/v2/service_auth_token"
require "jfoundry/v2/user"
require "jfoundry/v2/organization"
require "jfoundry/v2/space"
require "jfoundry/v2/domain"
require "jfoundry/v2/route"
require "jfoundry/v2/stack"
require "jfoundry/v2/quota_definition"
require "jfoundry/v2/app_event"
require "jfoundry/v2/service_broker"

require "jfoundry/v2/base"
require "jfoundry/v2/client"
#require "jfoundry/v2/fake_client"

module JFoundry
  class Client < BaseClient
    def self.new(*args)
      warn "DEPRECATION WARNING: Please use JFoundry::Client.get instead of JFoundry::Client.new"
      get(*args)
    end

    def self.get(*args)
      JFoundry::V2::Client.new(*args).tap { |client| client.info }
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jfoundry-0.1.7 lib/jfoundry/client.rb
jfoundry-0.1.6 lib/jfoundry/client.rb
jfoundry-0.1.4 lib/jfoundry/client.rb
jfoundry-0.1.3 lib/jfoundry/client.rb
jfoundry-0.1.2 lib/jfoundry/client.rb
jfoundry-0.1.1 lib/jfoundry/client.rb
jfoundry-0.1.0.pre lib/jfoundry/client.rb
jfoundry-0.1.0 lib/jfoundry/client.rb