Sha256: b461a25c862a16dad0a9e54bd6032356e38ba80ab2639340c3e7822bcfb2034a
Contents?: true
Size: 389 Bytes
Versions: 1
Compression:
Stored size: 389 Bytes
Contents
# frozen_string_literal: true module ElasticsearchRecord # 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 = 3 TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".") def self.to_s STRING end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
elasticsearch_record-1.3.1 | lib/elasticsearch_record/gem_version.rb |