Sha256: cf69004b4cc839f1b53428304bf45dc307c78a3753fca0bc5dae5e255e131c6e
Contents?: true
Size: 349 Bytes
Versions: 1
Compression:
Stored size: 349 Bytes
Contents
# frozen_string_literal: true module SmartMachine # Returns the version of the currently loaded SmartMachine as a <tt>Gem::Version</tt>. def self.gem_version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 0 MINOR = 7 TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
smartmachine-0.7.0 | lib/smart_machine/gem_version.rb |