Sha256: 8cbb4781a03971db4497daa6af788514bac61c63911eeb83b87d0ac84d8ce920

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

module RingCentralSdk
  VERSION = '1.3.0'

  RC_SERVER_PRODUCTION = 'https://platform.ringcentral.com'
  RC_SERVER_SANDBOX    = 'https://platform.devtest.ringcentral.com'

  autoload :REST, 'ringcentral_sdk/rest'

  class << self
    def new(app_key, app_secret, server_url = RC_SERVER_SANDBOX, opts = {})
      RingCentralSdk::REST::Client.new(app_key, app_secret, server_url, opts)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ringcentral_sdk-1.3.0 lib/ringcentral_sdk.rb