Sha256: 6eb2f296fe56a3c5d2b5ce06c1db7380eddefb3410c1c2eaa8e832bdcc0d649e

Contents?: true

Size: 341 Bytes

Versions: 1

Compression:

Stored size: 341 Bytes

Contents

# Define library version.

require 'rbconfig'

module DatadogAPIClient
  VERSION = '1.7.0'

  USER_AGENT = format(
    'datadog-api-client-ruby/%<version>s (ruby %<ruver>s; os %<os>s; arch %<arch>s)',
    version: VERSION,
    ruver: RUBY_VERSION,
    os: RbConfig::CONFIG['host_os'].downcase,
    arch: RbConfig::CONFIG['host_cpu']
  )
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog_api_client-1.7.0 lib/datadog_api_client/version.rb