Sha256: 73bd689d97661d76be696f9cd465fb1f39e82b42d34f7ccaf654d24c82908028
Contents?: true
Size: 452 Bytes
Versions: 1
Compression:
Stored size: 452 Bytes
Contents
# 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 = 0 # tiny version TINY = 0 # 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-2.0.0 | lib/jwt/version.rb |