Sha256: b246662f9305cdc312753c39fc9298c0411f73921319ecc9fba293968158c0fb
Contents?: true
Size: 397 Bytes
Versions: 1
Compression:
Stored size: 397 Bytes
Contents
# frozen_string_literal: true module Composable module Service # Returns the currently-loaded version of Composable::Service as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 0 MINOR = 0 TINY = 11 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-service-0.0.11 | lib/composable/service/gem_version.rb |