module Guard module SidekiqVersion MAJOR = 0 # api MINOR = 0 # features PATCH = 5 # bug fixes BUILD = nil # beta, rc1, etc STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.') end end