Sha256: 3bd8439b68075b06b3f2e986ea95e4be35ffde731e53809adbca2b2bd60430c6
Contents?: true
Size: 423 Bytes
Versions: 1
Compression:
Stored size: 423 Bytes
Contents
# encoding: utf-8 # 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 = 1 # minor version MINOR = 5 # tiny version TINY = 5 # alpha, beta, etc. tag PRE = nil # Build version string STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jwt-1.5.5 | lib/jwt/version.rb |