class Drone::Version

Current version of the Ruby client

Constants

MAJOR
MINOR
PATCH
PRE

Public Class Methods

to_s() click to toggle source

Return the current version

@return [String] the current version of the implementation

# File lib/drone/version.rb, line 32
def to_s
  [MAJOR, MINOR, PATCH, PRE].compact.join(".")
end