swipely/sumo

View on GitHub
lib/sumo/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
# This module holds versioning information for the gem.
module Sumo
  MAJOR = 2
  MINOR = 1
  PATCH = 0
  RELEASE = nil

  VERSION = [MAJOR, MINOR, PATCH, RELEASE].compact.join('.')

  API_VERSION = 1
end