# frozen_string_literal: true module SolidusVolumePricing module_function # Returns the version of the currently loaded SolidusVolumePricing as a # Gem::Version. 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