Sha256: 78b1b73ebcfff6999f005a4a073469b202745a85398e984c953b43a7f7fbb1a7
Contents?: true
Size: 702 Bytes
Versions: 1
Compression:
Stored size: 702 Bytes
Contents
# frozen_string_literal: true # Returns the version of the gem as a <tt>Gem::Version</tt> module AsanaExceptionNotifier # it prints the gem version as a string # # @return [String] # # @api public def self.gem_version Gem::Version.new VERSION::STRING end # module used to generate the version string # provides a easy way of getting the major, minor and tiny module VERSION # major release version MAJOR = 2 # minor release version MINOR = 2 # tiny release version TINY = 0 # prelease version ( set this only if it is a prelease) PRE = nil # generates the version string STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
asana_exception_notifier-2.2.0 | lib/asana_exception_notifier/version.rb |