class Azure::Storage::Common::Version
Constants
- MAJOR
Fields represent the parts defined in semver.org/
- MINOR
- UPDATE
Public Class Methods
to_s()
click to toggle source
@return [String]
# File lib/azure/storage/common/version.rb, line 38 def to_s [MAJOR, MINOR, UPDATE].compact.join(".") end
to_uas()
click to toggle source
# File lib/azure/storage/common/version.rb, line 42 def to_uas [MAJOR, MINOR, UPDATE].join(".") end