debian-mirror-gitlab/debian/gems-compat/jwt-2.1.0/lib/jwt/version.rb

25 lines
452 B
Ruby
Raw Normal View History

2019-03-15 21:16:06 +05:30
# encoding: utf-8
# frozen_string_literal: true
# Moments version builder module
module JWT
def self.gem_version
Gem::Version.new VERSION::STRING
end
# Moments version builder module
module VERSION
# major version
MAJOR = 2
# minor version
MINOR = 1
# tiny version
TINY = 0
# alpha, beta, etc. tag
PRE = nil
# Build version string
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
end
end