Sha256: 3426f34054f20e5c4d5e6cbf51327c5c2c7fcdf7e0d001eb015cd206534577e8
Contents?: true
Size: 390 Bytes
Versions: 1
Compression:
Stored size: 390 Bytes
Contents
# frozen_string_literal: true module Composable module Core # Returns the currently-loaded version of Composable::Core as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 0 MINOR = 0 TINY = 8 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
composable-core-0.0.8 | lib/composable/core/gem_version.rb |