Sha256: 9f036d722b10837ffd0d6c2faa317eb383e9e0163d3105cacf20a938128e8b6b
Contents?: true
Size: 463 Bytes
Versions: 2
Compression:
Stored size: 463 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 = 'beta1'.freeze # Build version string STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
jwt-blockstack-2.0.0.beta1 | lib/jwt/version.rb |
jwt-2.0.0.beta1 | lib/jwt/version.rb |