Method: Cloudinary::Analytics#tech_version

Defined in:
lib/cloudinary/analytics.rb

#tech_version(tech_version) ⇒ void

This method returns an undefined value.

Sets the tech version.

Used for integrations.

Parameters:

  • tech_version (String)

    The tech version to set (MAJOR.MINOR), for example: “1.0”.



92
93
94
# File 'lib/cloudinary/analytics.rb', line 92

def tech_version(tech_version)
  @tech_version = tech_version.split('.').first(2).join('.')
end