Sha256: 2f783bc9268592a66278f02d9e8cf056fd0c1d7d8b896d70cb229dfc92b647b9

Contents?: true

Size: 341 Bytes

Versions: 1

Compression:

Stored size: 341 Bytes

Contents

# Define library version.

require 'rbconfig'

module DatadogAPIClient
  VERSION = '1.3.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.3.0 lib/datadog_api_client/version.rb