Sha256: 04eca117d1f990c7d40d522519a1b37fa57dda61f1743ded9ae4387491a8b0db
Contents?: true
Size: 463 Bytes
Versions: 1
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 = 'beta2'.freeze # 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-blockstack-2.0.0.beta2 | lib/jwt/version.rb |