Sha256: 1cb60349a351fb7ee7a9264f3685a8936a156f64e22809509d8d19789e6f099c
Contents?: true
Size: 435 Bytes
Versions: 1
Compression:
Stored size: 435 Bytes
Contents
# frozen_string_literal: true module RubySmart module SimpleLogger # Returns the version of the currently loaded module as a <tt>Gem::Version</tt> def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 1 MINOR = 1 TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") def self.to_s STRING end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_smart-simple_logger-1.1.1 | lib/ruby_smart/simple_logger/gem_version.rb |