Sha256: 99e48c364aa4c497fb74d7a2650f9d40d5b5c924a8b8591ba3642c57ac5cafa3
Contents?: true
Size: 380 Bytes
Versions: 1
Compression:
Stored size: 380 Bytes
Contents
# frozen_string_literal: true module SolidusVolumePricing module_function # Returns the version of the currently loaded SolidusVolumePricing as a # <tt>Gem::Version</tt>. def version Gem::Version.new VERSION::STRING end module VERSION MAJOR = 1 MINOR = 0 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 |
---|---|
solidus_volume_pricing-1.0.0 | lib/solidus_volume_pricing/version.rb |